clc
clear
Rmuban=imread('Rmuban.jpg');
Rmuban=rgb2gray(imcrop(Rmuban,[4,2,63,63]));
%Rmuban=im2double(Rmuban);
%figure;imshow(Rmuban);title('R1');
for i=1:5
b(i)={[imresize(Rmuban,1+0.2*(i-1))]};
end
for i=1:5
m=size(b{i},1);
c=b{i};
for j=1:64
for k=1:64
d(j,k)=c(j+round((m-64)/2),k+round((m-64)/2));
end
end
e(i)={d};
end
for i=1:5
%figure;imshow(e{i});
end
%产生系列放大图像完毕,即e{i}
for i=1:5
for j=1:5
R(i,j)=corr2(e{i},e{j});
end
end
%相关矩阵R求得
a=ones(5,1);
c=R*a;
while (max(c)-min(c))/max(c)>0.02
c=R*a;
for j=1:5
a(j)=a(j)+0.2*(max(c)-c(j));
end
end
b=sum(a);
for i=1:5
a(i)=a(i)/b;
end
a
%权因子a求得
%产生综合参考模板
f=0;
for i=1:5
f=f+a(i)*e{i};
end
%figure;imshow(f);title('综合参考图像');
muban=uint8(zeros(256,256));
for i=97:160
for j=65:128
muban(i,j)=f(i-96,j-64);
end
end
%figure;imshow(muban);title('综合参考模板');
%产生不同比例目标图像
for i=1:5
ee{i}=uint8(zeros(256,256));
for m=97:160
for n=129:192
ee{i}(m,n)=e{i}(m-96,n-128);
end
end
%figure;imshow(uint8(ee{i}*255));title('不同比例目标图像');
end
%产生不同比例的综合图像
for i=1:5
zonghe{i}=muban+ee{i};
figure;imshow(zonghe{i});title('不同比例综合图像');
end
%开始用不同比例R与综合参考图像比较
for i=1:5
Forizonghe=fft2(double(zonghe{i}),256,256);
Foricenterzonghe=fftshift(Forizonghe);
Forizongheabs=abs(Foricenterzonghe);
Forizongheabs=double(Forizongheabs);
%Forizonghe2=Forizongheabs.*Forizongheabs;
%figure;imagesc(Forizonghe2);axis tight;
%figure;mesh(double(Forizonghe2));axis tight;title('综合功率谱');
Iforizero=ifft2(Forizongheabs);
Iforizerocenter=fftshift(Iforizero);
Iforizerocenterim=uint8((abs(Iforizerocenter)/max(max(abs(Iforizerocenter))))*255);
%figure;imshow(Iforizerocenterim);title('去零级相关输出');
figure; mesh(abs(Iforizerocenter));axis tight;title('去零级相关输出的三维显示');
max(max(abs(Iforizerocenter(:,1:100))))
end
mouse_1130
- 粉丝: 2
- 资源: 6
最新资源
- 国际象棋检测9-YOLO(v5至v11)、COCO、CreateML、Paligemma、TFRecord、VOC数据集合集.rar
- 2024年秋学季-C#课程的信息系统大作业winform
- 基于Spring Boot+Vue技术的湖南特产销售网站(编号:17755125).zip
- 基于Spring Boot的企业客源关系管理系统的设计与实现(编号:1778968).zip
- 基于spring boot的实验室开放管理系统_4ty8i0c9_203-wx.zip
- 基于Spring Boot的养老院管理系统的设计与实现_6575f5w2_223-wx(1).zip
- 基于Spring Boot的中药材管理系统(编号:25853136).zip
- 基于Spring Boot框架的网上蛋糕销售系统_30z8r428_231-wx.zip
- ZZU 面向对象Java实验报告
- 用python ollama qwen2.5 开发一个AI修仙游戏 MUD
- 基于Spring Cloud技术的智慧云停车场服务管理系统(编号:28065246).zip
- 基于spring mvc和mybatis的食品商城系统(编号:9025459).zip
- NET综合解决工具,windows平台必备
- 基于Spark的电影推荐系统源码(毕设)
- 明厨亮灶老鼠检测数据集:用于YOLO模型训练的高质量数据集
- 商城蛋糕数据库sql源码
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈