-
lzw1
Lempel Ziv Encoder in matlab
- 2010-12-31 20:34:45下载
- 积分:1
-
natlab21
【matlab编程代做】matlab从图形坐标转换图像 可以作为参考使用 学习([Do] matlab matlab programming on behalf of the coordinate transformation graphic images can be used as a reference study)
- 2015-01-12 20:53:53下载
- 积分:1
-
MatLab-E
MatLab图形绘制功能口令及代码,很不错,值得看看(MatLab graphics rendering capabilities password and code, very good, worth a look)
- 2013-11-15 16:38:11下载
- 积分:1
-
zuiyou
最优控制示例-基于单级倒立摆的LQR调节器(failed to translate)
- 2010-06-24 16:21:05下载
- 积分:1
-
ab
说明: tsoa是画椭圆模型的,利用多个椭圆进行定位,程序代码(Painted oval model, positioning)
- 2013-01-02 14:34:48下载
- 积分:1
-
matlab-Optimization5
这是关于matlab当中的非线性变规划当中的一维搜索的一个源程序 很实用 经常能得到一个很满意的值(This is often a source of about one-dimensional search matlab nonlinear variable which planning which is very useful to get a very satisfactory value)
- 2012-08-27 13:31:05下载
- 积分:1
-
quchujidianganrao
使用低通滤波器对心电波形进行滤波,去除肌电干扰,并设计图形界面(Using low pass filter, get rid of the myoelectricity interference of ecg waveform, and the graphical interface design
)
- 2014-06-21 10:47:58下载
- 积分:1
-
adaptivefilter
自适应滤波器原理第四版(答案与代码),作者西蒙-霍金(Adaptive Filter Theory Fourth Edition (the answer with the code), by Simon- Stephen Hawking)
- 2009-11-26 14:01:43下载
- 积分:1
-
hard_c_means
本例子分群是用硬式分群的方式,也就是結果非 0 即 1,最後會在畫圖來顯示結果,適合初學者學習(The example of grouping is the way hard grouping, which is the result of non-0 or 1, the last in the drawing to show the results, suitable for beginners to learn)
- 2009-09-10 14:19:41下载
- 积分:1
-
output_of_DCT_in_image_fusion
u can calculate DCT
clc
inp = imread( Im1.jpg )
inp1 = imread( Im2.jpg )
A = double(inp(:,:,1))
B = double(inp1(:,:,1))
A1=double(blkproc(A,[8 8], dct2 ))
B1=double(blkproc(B,[8 8], dct2 ))
[r,c] = size(A1)
r1 = []
for i=1:r
for j=1:c
if A1(i,j) > B1(i,j)
r1(i,j)=A1(i,j)
else
r1(i,j)=B1(i,j)
end
end
end
r1= double(r1(:,:,1))
C=blkproc(r1,[8 8], idct2 )
round(C)
C1=idct2(r1)
figure
imshow(uint8(C))
figure
imshow(uint8(C1))
imwrite(uint8(C), dct8x8min.jpg )
- 2011-01-09 23:26:05下载
- 积分:1