此页面上的内容需要较新版本的 Adobe Flash Player。

获取 Adobe Flash Player

第二章  第七题答案

解:MATLAB程序如下:

A=imread('rice.tif');

imshow(A);

A2=fft2(A);

A2=fftshift(A2);

figure,imshow(log(abs(A2)+1),[0 10]) ;