程序出了一点问题 麻烦给我看看
clearfigure(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张图 第三张没有显示出来