clear all;
I=imread('cameraman.tif');
figure(1);
imshow(I);
title('原始图像');
F=fft2(I);
F2=abs(fftshift(F));
figure(2);
imshow(log(F2),[]);% 用图像显示 Fourier 变换结果一般需要取对数
colormap jet(64);colorbar;
title('Fourier 变换结果');
https://blog.sciencenet.cn/blog-287000-509619.html
上一篇:
二值图像的 Fourier 变换 --- fft2, fftshift 函数下一篇:
Fourier 变换的旋转不变性