-
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
-
copulafit
MATLAB小程序,COPULA函数对计算多元统计量的联合概率密度!(MATLAB small programme, which is used to calculate the Copula Function.)
- 2020-11-11 19:49:45下载
- 积分:1
-
barrier
Using interpolation method and implied volatility to calculate barrier options
- 2010-07-15 16:53:24下载
- 积分:1
-
Rayleigh11.m
一种改进型的瑞利信道仿真模型小案例(JAKES参考模型)(An improved version of the Rayleigh channel simulation model for small cases (JAKES Reference Model))
- 2008-07-03 16:19:02下载
- 积分:1
-
DiamondSearch
视频运动估计中快速块匹配方法 菱形搜索(The video motion estimation based on fast block matching Diamond Search)
- 2012-11-04 16:58:47下载
- 积分:1
-
sandianping
三电平逆变器的simulink仿真模块,可以输出三个变量,经过调试,可以正常运行。(Three-level inverter simulink simulation module can output three variables, after commissioning, it works.)
- 2015-03-16 10:33:24下载
- 积分:1
-
tspmatlab
travelling salesman problem using matlab
- 2020-06-23 06:20:02下载
- 积分:1
-
MatlabSpiderToolbox
Matlab人工智能学习包,由世界领先的德国马普所制作(The spider is intended to be a complete object orientated environment for machine learning in Matlab. Aside from easy use of base learning algorithms, algorithms can be plugged together and can be compared with, e.g model selection, statistical tests and visual plots. This gives all the power of objects (reusability, plug together, share code) but also all the power of Matlab for machine learning research.)
- 2009-11-13 23:57:06下载
- 积分:1
-
whole-OFDM-matlab-code
最完整的OFDM matlab程序,适合OFDM入门者。(the whole OFDM matlab program code, which is suitable for the rudimental user.)
- 2010-01-14 13:19:03下载
- 积分:1
-
VC++andmatlab
讨论了VC++语言和Matlab语言的接口技术,并有具体程序,为二者的交互编程提供了可能。(Discussed VC++ Language and Matlab language interface technology, and there are specific procedures for the two interactive programming possible.)
- 2008-04-24 22:35:54下载
- 积分:1