-
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
-
1
说明: Matlab编写BPSK信号通过AWGN信道的仿真过程(Matlab write BPSK AWGN channel signal through the simulation process)
- 2010-04-28 08:40:24下载
- 积分:1
-
AM-Matlab
Amplitude modulation and demodulation using simulink and matlab.
- 2013-11-17 02:20:55下载
- 积分:1
-
gmeewidn
可以动态调节运行环境的参数,使用matlab实现智能预测控制算法,搭建OFDM通信系统的框架,包括主成分分析、因子分析、贝叶斯分析,包含光伏电池模块、MPPT模块、BOOST模块、逆变模块,代码里有很完整的注释和解释。(Can dynamically adjust the parameters of the operating environment, Use matlab intelligent predictive control algorithm, Build a framework OFDM communication system, Including principal component analysis, factor analysis, Bayesian analysis, PV modules contain, MPPT module, BOOST module, inverter module, Code, there are very complete notes and explanation.)
- 2016-02-27 11:35:36下载
- 积分:1
-
medicalimageprocessing
matlab的医学图像处理相关论文,内容挺全的,包括图像去噪声、边缘检测等。找了很久(medical image processing matlab related papers, the content very wide, including the image to noise, such as edge detection. Looking for a long time)
- 2009-05-28 15:27:05下载
- 积分:1
-
SNV
近红外光谱标准正态变量变换处理方法,主要是消除固体颗粒大小,表面散射以及光程变化对漫反射光谱的影响。(Near infrared spectrum standard normal variable transform processing method, mainly eliminate the solid particle size, surface scattering and the change of optical path of diffuse reflection spectra.
)
- 2021-04-23 10:48:48下载
- 积分:1
-
EKF
基于系统目标轨迹的EKF仿真,其中包含数据分析函数、EFK函数、距离判断功能块函数、状态仿真功能块函数、以及基于EKF的系统目标轨迹仿真的simulink。(Including data analysis function, EKF function,distance judgement function, state simulation function , and system based on EKF target trajectory simulation of the simulink)
- 2015-11-20 10:23:03下载
- 积分:1
-
all
用三种不同的方法(MS/MMSE/ML)估计cp同步的位置(Using three different methods (MS/MMSE/ML) estimate the location of sync cp)
- 2010-07-07 14:45:07下载
- 积分:1
-
Introduction_to_Simulink_with_Engineering_Applicat
simulink基础经典教程,适用于工程应用,讲解非常详细。(introduction to simulink with engineering application)
- 2010-11-18 19:16:28下载
- 积分:1
-
pde_TwoTemperature_solve
双温方程的数值解法,隐函数的数值求解方法matlab源代码(Dual equation numerical method, a numerical method of the implicit function Matlab source code)
- 2012-05-25 10:49:57下载
- 积分:1