The Cozy Hut of Dr. Zhang分享 http://blog.sciencenet.cn/u/zjzhang

博文

数字图像的 Fourier 变换 --- fft2, fftshift 函数

已有 6843 次阅读 2011-11-19 12:24 |个人分类:图像分析(matlab,PDE)|系统分类:科研笔记

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 变换的旋转不变性
收藏 IP: 121.33.190.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-4-26 17:57

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部