-
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
-
melfiltermatrix1
Matlab met spectrum filter code
- 2013-03-16 12:04:52下载
- 积分:1
-
CDMA
CDMA通信系统仿真程序,可以选择不同的PN码扩频调制,有信道编码,信道加入高斯白噪声,仿真不同的检测器的的性能(CDMA communication system simulation, simulation of different detectors performance)
- 2013-11-16 23:27:32下载
- 积分:1
-
K-Kmedoids
k -medoids algorithm is a clustering algorithm related to the k -means algorithm and the medoidshift algorithm.
- 2015-07-03 05:14:14下载
- 积分:1
-
wavelet
A Wavelet based image compression
- 2010-11-18 12:08:19下载
- 积分:1
-
xihaofenxi
MATLAB信号分析,内涵各种信号分析的源代码(MATLAB signal analysis, meaning the source code for a variety of signal analysis)
- 2010-01-05 10:56:09下载
- 积分:1
-
code
implement PRM to check collision robot and obstacle
- 2012-01-22 05:38:18下载
- 积分:1
-
matlab_fuhaojisuan
matlab符号计算,包括符号类型的创建、使用、任意精度数学计算、微积分等等重要方法,值得借鉴!(Matlab symbolic computation, including the types of symbols to create, use, arbitrary precision arithmetic Calculus, etc. important method, which is worth learning from.)
- 2007-05-28 22:35:27下载
- 积分:1
-
SPAMS_v1.02_win32
THIS PROJECT IS ON COMPUTER VISION AND TO PERFORM DIFFERENT OPERATIONS ON GIVEN IMAGE FILE.(I.E GETTING IMAGE INFORMATION AND LAPLACIAN TRANSFORMATION OF GIVEN IMAGE)
- 2011-10-19 19:10:25下载
- 积分:1
-
Collective_Intelligence
集体智慧编程。。关于数据挖掘和网络的一本经典书。。。(Programming Collective Intelligence. . Data mining and network on a classic book. . .)
- 2010-08-05 08:30:11下载
- 积分:1