-
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
-
TsaiCalibration
Tsai二步法摄像机标定算法 matlab(Tsai two-step camera calibration algorithm)
- 2013-07-22 10:24:07下载
- 积分:1
-
jiaozheng
对一个系统进行超前或滞后矫正的matlab程序 希望对大家有用(Lead or lag correction)
- 2012-04-29 17:52:47下载
- 积分:1
-
MATLAB
里面包括了MATLAB的一些常用的函数的参考,对与学习的朋友们可以说是一个总结性的文档(Which includes a number of commonly used MATLAB function reference on friends and learning can be said to be a summary document)
- 2009-05-30 19:27:57下载
- 积分:1
-
zhifangtu
直方图均衡化使用MATLAB实现。数字图像处理程序(Histogram equalization using the MATLAB implementation. Digital image processing)
- 2010-06-15 17:01:58下载
- 积分:1
-
isar2
ISAR成像仿真,包括几种算法的距离对准与相位对准(ISAR imaging simulation, including several algorithms distance aligned with the phase alignment)
- 2016-05-13 17:32:41下载
- 积分:1
-
m5_4
Double Integration by the Simpson s Rule(Double Integration by the Simpson' s Rule)
- 2009-03-17 10:30:51下载
- 积分:1
-
Conderer_multiresolution
非线性多分辨率信号的分解,论文及matlab代码(Non-linear multi-resolution signal decomposition, papers and matlab code)
- 2009-04-15 19:22:24下载
- 积分:1
-
dianji
直流伺服电机转速 PID控制系统仿真 利用MATLAB中的simulink 对直流伺服电机的转速进行仿真(DC servo motor speed PID control system simulation using MATLAB simulink in the speed DC servo motor simulation)
- 2010-05-10 21:24:14下载
- 积分:1
-
myfilter
用MATLAB仿真并计算出IIR滤波器的参数,为了防止在定点滤波器溢出,通过程序转化为定点处理器中的滤波参数(Simulation IIR Filter parameters)
- 2012-03-30 15:13:40下载
- 积分:1