-
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
-
pcgames_DotA_im_3.80
sift匹配程序在matlab环境下的实现,包括特征提取与匹配(the sift match program realization in Matlab environment, including feature extraction and matching)
- 2012-04-02 13:19:06下载
- 积分:1
-
AdapBF_SNR
this is matlab version of removal of noise
- 2011-08-06 20:36:03下载
- 积分:1
-
yieldpoint
capture the E form tensile tests
- 2011-10-27 02:43:03下载
- 积分:1
-
EMD
EMD 方法在理论上可以应用于任何类型的信号的分解, 因而在处理非平稳及非线性数据上,具有非常明显的优势,适合于分析非线性、非平稳信号序列,具有很高的信噪比。(EMD decomposition method in theory can be applied to any type of signal, which in the non-stationary and nonlinear data, with a very distinct advantage, suitable for analyzing nonlinear and non-stationary signal sequence, with a high signal to noise ratio .)
- 2014-11-25 18:54:48下载
- 积分:1
-
rayleigh-Matlab
产生一个随机输出信号在瑞利信道上可以用来生成MATLAB仿真模块。(This program will generate a random signal output by Rayleigh channel can be used to generate MATLAB simulation module.)
- 2014-12-23 17:09:22下载
- 积分:1
-
BPSK
很好很强大,是关于双极性基带数据信号对载波进行角度调制产生BPSK信号的,有用的就下取用(strong,just for student who need it.)
- 2010-05-23 00:53:43下载
- 积分:1
-
binary1
本文件将普通RGB图像转化成二值图像,方便后续处理(This document will be an ordinary RGB image into binary image, to facilitate follow-up treatment)
- 2011-09-23 14:26:30下载
- 积分:1
-
Digital-FilteraEqualizer
Digital filter 数字滤波器与均衡器(Digital filter digital filter and equalizer)
- 2014-10-27 18:50:06下载
- 积分:1
-
face_detection
Title: "Detection of face using skin colour"
this code used to detect face from skin colour....
- 2013-05-06 19:32:42下载
- 积分:1