资源简介
该程序是自己手动编写的,分析结果和eemd工具包分析的结果差别不大,希望能对大家的eemd学习提供参考。
代码片段和文件信息
clc
clear
c=imread(‘E:\matlab\picture\h2.jpg‘);
%figure;imshow(Rmuban);title(‘原图‘);
%c=rgb2gray(c);
c=im2double(c);
figure;imshow(c);title(‘灰度图‘);
d=imread(‘E:\matlab\picture\h2.jpg‘);
%figure;imshow(Rmuban);title(‘原图‘);
%d=rgb2gray(d);
d=im2double(d);
figure;imshow(d);title(‘灰度图1‘);
cc=uint8(zeros(10241024));
for m=129:384
for n=257:512
cc(mn)=c(m-128n-256);
end
end
dd=uint8(zeros(10241024));
for i=129:384
for j=513:768
dd(ij)=d(i-128j-512);
end
end
zonghe=cc+dd;
imshow(zonghe);title(‘不同比例综合图像‘);
Forizonghe=fft2(double(zonghe)10241024);
Foricente
评论
共有 条评论