标题:程序出了一点问题 麻烦给我看看
取消只看楼主
柳逸尘
Rank: 3Rank: 3
等 级:论坛游侠
威 望:1
帖 子:80
专家分:131
注 册:2015-8-10
结帖率:71.43%
 问题点数:0 回复次数:0 
程序出了一点问题 麻烦给我看看
clear
figure(1);
I=imread('d:\1.jpg');
K=imread('d:\2.jpg');
subplot(1,2,1),imshow(I)
title('??')
xlabel('照片1')
subplot(1,2,2),imshow(K)
title('??')
xlabel('照片2')
figure(2);
X1=fft(I);
subplot(2,2,1),plot(X1(1:10))
title('??')
xlabel('变化后照片1')
X2=fft(K);
subplot(2,2,2),plot(X2(1:512))
title('??')
xlabel('变化后照片2')
X3=X1+X2;
X4=ifft(X3);
subplot(2,2,3),plot(X4(1:512))
title('??')
xlabel('相加后的逆变换')

注释:在编程之后出现了
??? Array dimensions must match for binary array op.
而且figure(2);中就2张图 第三张没有显示出来
搜索更多相关主题的帖子: figure title 照片 
2016-05-28 16:36



参与讨论请移步原网站贴子:https://bbs.bccn.net/thread-465332-1-1.html




关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 2.865056 second(s), 8 queries.
Copyright©2004-2025, BCCN.NET, All Rights Reserved