-
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
-
matlab
详细的介绍了matlab仿真的原理与技术,具有重要的意义(Detailed description of the matlab simulation theory and technology of great significance)
- 2010-06-20 12:24:29下载
- 积分:1
-
Digital-image-processing(1)
数字图像处理中利用matlab完成图像的傅里叶变换、放大、直方图变换、中值滤波、小波变换基本功能(Digital image processing complete use of matlab image of Fourier transformation, amplification, histogram transform, median filtering, wavelet transform basic functions
)
- 2012-05-18 19:18:13下载
- 积分:1
-
123
MATLAB中介绍简要的降低PAPR的pts编码方案,并给出了源码(Briefly described in MATLAB PAPR reduction coding scheme, and gives the source)
- 2011-04-19 15:13:07下载
- 积分:1
-
matched_filter
匹配滤波器在MATLAB中的频域实现方法(Matched filter in the frequency domain in MATLAB Implementation)
- 2010-05-27 02:58:51下载
- 积分:1
-
uniformgauss
均匀分布的随机数,并依此产生高斯分布随机数,12和法和Box-Muller法产生高斯分布(uniform distribution of random numbers, and so have a Gaussian distribution of random numbers, 12 and the law and Box-Muller method, Gaussian distribution)
- 2007-03-27 11:23:50下载
- 积分:1
-
fengxiantouzi
关于数学建模风险透支问题的程序,主要解决在风险投资中的最优策略问题(About mathematical modeling risk overdraw problem program, mainly to solve the risk of the investment in the optimal strategy problem
)
- 2012-05-26 20:56:24下载
- 积分:1
-
myfilters
matlab code for modelling low pass filters
- 2010-07-22 19:59:27下载
- 积分:1
-
BeadFluct
一个用于计算微流控腔道或者留十分析时候,细胞运动以及细胞自身参数的软件。(One used to calculate the microfluidic cavity, or to stay 10 analysis when the parameters of cell movement and cell' s own software.)
- 2010-02-24 21:42:18下载
- 积分:1
-
IMMKF
这是研究生毕业论文做的项目——基于粒子滤波和卡尔曼滤波的卫星定位技术。附件中包含了无线信道估计和均衡、TDOA测距、IMM-KF滤波的所有程序,希望对从事无线定位技术的开发人员有帮助。独家奉献。(This is the project graduate thesis do-- Based on satellite positioning technique of particle filter and Calman filter. Annex contains all the applications of wireless channel estimation and equalization, TDOA distance, IMM-KF filter, and they hope to help in the wireless location technology development personnel. Exclusive dedication.)
- 2013-08-31 22:15:21下载
- 积分:1