-
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
image interpolation code which include some comments you to help you to aplly. Have fun!
- 2013-05-26 23:56:15下载
- 积分:1
-
MATLABpractise
matlab初级的综合练习教程及答案,包括符号运算,图像(matlab primary comprehensive tutorial exercises and answers, including symbolic computing, image)
- 2008-04-03 14:25:16下载
- 积分:1
-
sdma_program
采用SDMA算法,主要实现排队论的模拟仿真(SDMA algorithm is used primarily to achieve simulation of queuing theory)
- 2009-11-23 11:39:27下载
- 积分:1
-
dasfdf
That program runs a project
- 2009-12-07 01:31:34下载
- 积分:1
-
MATLAB-lesson-source-code
《MATLAB程序设计教程》电子教案+源码(MATLAB Programming Tutorial lesson plans+ source code
)
- 2012-02-13 17:47:55下载
- 积分:1
-
Matlab_Vehicle_License_Location
基于字符轮廓与形态学处理的车牌定位算法,做图像处理及车牌定位的朋友可以看一下,本文毕业设计部分(Character-based profile and the morphological processing of license plate location algorithm to do image processing and license plate location of friends can look at this part of graduation)
- 2010-05-11 09:37:22下载
- 积分:1
-
stft
短时傅里叶,matlab程序,经过检验可以正常使用,(stft short-time ft)
- 2015-07-15 22:14:24下载
- 积分:1
-
PLStoolbox
国外的一个PLStoolbox,主要用于处理图象,也可以用来回归,欢迎使用(A foreign PLStoolbox, mainly used for treatment of images can also be used to return, please use)
- 2009-03-31 09:31:15下载
- 积分:1
-
precision
根据国标编写的数控机床轴线定位精度和重复定位精度计算程序( a matlab source code to calculate positioning accuracy and re-orientation accuracy )
- 2015-11-24 16:08:09下载
- 积分:1