-
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
-
slddjmx--motor-model
电动机simulink模型,非常好用,内有控制程序(motor simulink model)
- 2013-03-21 09:18:11下载
- 积分:1
-
Frequency_sel_channel_est_equa
This codes are for frequency selective fading channels for MIMO system. Both estimation and equalization are done using LS and MMSE estimation and ZF and MMSE equalization.
- 2015-02-11 19:34:01下载
- 积分:1
-
a-quadratic-discriminant-function
一种二次判别函数在MATLAB环境中的实现与应用(A quadratic discriminant function in MATLAB Implementation and Application of)
- 2013-05-16 10:12:26下载
- 积分:1
-
pingpufenxi
频谱分析实践,将信号源发出的信号强度按频率顺序展开,使其成为频率的函数,并考察变化规律,称为频谱分析。研究噪声的频谱是为了深入了解噪声源的特性帮助寻找主要的噪声污染源,为噪声控制提供依据,为噪声控制提供依据。(Spectrum analysis practice, the signal strength of the signal source frequency in order to start by making it a function of frequency, and variation study, known as spectrum analysis. Of the noise spectrum is to understand the characteristics of noise sources to help find the major noise sources, provide the basis for the noise control, provide the basis for the noise control.)
- 2010-05-20 11:08:37下载
- 积分:1
-
RS
说明: Hurst exponent calculation algoritms. Time series analysis trending, mean reverting. Analysis of time series, fractal analysis.
- 2010-04-21 01:56:13下载
- 积分:1
-
PSO
说明: 用粒子群算法计算最短路径,一般用于车辆路径问题(PSO)
- 2010-04-28 16:30:26下载
- 积分:1
-
00668163
an article about a model of dvr
- 2011-05-11 05:07:47下载
- 积分:1
-
genetic_TSP
用遗传算法求解TSP问题,matlab源程序,付P1.m与数据以供试验(solve TSP with GA)
- 2013-01-15 21:45:17下载
- 积分:1
-
Active-Contour-Segmentation
Greedy Snake contour plus user interaction
Active Contour Without Edges (Chan Vese)
I implement these papers using matlab.
I hope you enjoy :)
- 2012-06-14 21:58:15下载
- 积分:1