-
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
-
image-interpolation
图像插值放大,最近邻,双线性,双三次matlab实现(The image interpolation enlarge nearest neighbor, bilinear, bicubic matlab achieve)
- 2013-03-12 23:48:18下载
- 积分:1
-
Fresnel
Fresnel函数计算相对折射率所面临的问题是计算量较大,利用实测数据计算散射系数并作图显示结果(Fresnel function by calculating the relative refractive index is a calculation of the problems faced by large, using the measured scattering coefficient data and mapping the result will be displayed)
- 2009-04-19 14:43:36下载
- 积分:1
-
APF100512770
依照APF工作原理,进行MATLAB模型搭建,系本人精心制作,绝对原创,效果理想,适合APF行业人士进行相关研究!(In accordance with APF works, for MATLAB model structures, systems, I elaborate, absolutely original, successful, suitable for APF professionals to carry out research!)
- 2010-05-24 17:20:25下载
- 积分:1
-
QPSK
用matlab编写的正交相移调制,已通过测试,可以运行(QPSK)
- 2009-12-08 13:29:24下载
- 积分:1
-
NSGA-II
NSGA - II A multi-objective optimization algorithm
- 2021-01-05 21:28:55下载
- 积分:1
-
power_pwm
三相异步电机的simlink仿真模型,可直接运行(Simlink simulation model of three-phase asynchronous motors can be run directly)
- 2015-04-16 21:08:15下载
- 积分:1
-
main
一段图像处理matlab代码,对于图像处理很有用哦。。。。。(A matlab image processing code, for image processing is very useful oh.....)
- 2013-12-27 20:39:44下载
- 积分:1
-
OCR
Optical Chracter Recognization using template matching
- 2010-01-26 09:01:31下载
- 积分:1
-
Dig_Filter
digital filter which is used in design of the dig filter in dsp domain
- 2013-03-27 03:30:31下载
- 积分:1