-
kalmanf
用matlab编写的卡尔曼滤波程序,一个文件(Kalman filter using matlab programs written in)
- 2009-12-21 14:59:19下载
- 积分:1
-
greyforecast
灰色系统预测GM(1,1)模型的MATLAB源代码(Gray Forecast GM (1,1) model of MATLAB source code)
- 2015-03-24 16:16:30下载
- 积分:1
-
EOF_EXAMPLE
基于matlab的EOF分解程序,包括旋转EOF分解,复数EOF分解等,附带详细的例子(matlab, including rotated EOF decomposition, plural EOF decomposition, etc., along with detailed examples)
- 2015-04-15 10:54:17下载
- 积分:1
-
GAPLL
ga的一个仿真例子程序,还不错,用起来效果比较好,需要自己根据项目情况写适应度函数(ga a simulation example of the procedure, but also good to use effect is better, the basis of project information required to write their own fitness function)
- 2009-02-16 18:21:33下载
- 积分:1
-
chap09Mfiles
数字信号处理第九章 IIR滤波器的设计 代码实现(Digital Signal Processing Chapter IX IIR filter design code)
- 2014-01-07 22:41:09下载
- 积分:1
-
Crack
说明: crack matlab 2014b for windows
- 2019-01-10 06:30:52下载
- 积分:1
-
baocuntupian
matlab GUI 保存axes中图片代码(matlab GUI)
- 2011-12-15 10:13:05下载
- 积分:1
-
prac11
Various blurring effect and also it will be displaying you image with blind deconvolution.
- 2013-12-05 11:44:55下载
- 积分:1
-
GA
说明: 热能工程专业硕士研究生毕业课题:遗传算法目标函数优化(Thermal engineering graduate Master' s graduate student issues: genetic algorithm to optimize the objective function)
- 2009-03-23 17:37:27下载
- 积分: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