欢迎来到天天文库
浏览记录
ID:52689826
大小:12.54 KB
页数:2页
时间:2020-03-29
《图像融合代码-matlab.docx》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、%wav_imfuse.m//图像融合代码matlabclearfigureloadwbarbX1=X;map1=map;subplot(131);image(X1);colormap(map1);title('originalimagewbarb');axis('square');loadwomanX2=X;map2=map;fori=1:256forj=1:256if(X2(i,j)>100)X2(i,j)=1.2*X2(i,j);elseX2(i,j)=0.5*X2(i,j);endendendsubplot(132);image(X2);colormap(map2);title(
2、'woman');axis('square');[c1,s1]=wavedec2(X1,2,'sym4');sizec1=size(c1);fori=1:sizec1(2)c1(i)=1.2*c1(i);end[c2,s2]=wavedec2(X2,2,'sym4');c=c1+c2;c=0.5*c;xx=waverec2(c,s1,'sym4');subplot(133);image(xx);title('融合图像');axis('square');
此文档下载收益归作者所有