欢迎来到天天文库
浏览记录
ID:28644395
大小:498.11 KB
页数:4页
时间:2018-12-12
《matlab图像的傅里叶变换图像的》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、电子1004黄佳卿201081163图像傅里叶变换代码如下:I=imread('C:UsersjiaqingDesktopmatlabhomeworkzhen.jpg');%读入图像subplot(2,2,1),imshow(I);title('zhen');FI=abs((fft2(I)));NFI=255*mat2gray(FI);%归一化SFI=fftshift(NFI);imgray=rgb2gray(SFI);%灰阶subplot(2,2,2),imshow(imgray);title('fftofzhen');I=imread('C:Us
2、ersjiaqingDesktopmatlabhomeworkcat.jpg');%读入图像subplot(2,2,3),imshow(I);title('cat');FI=abs((fft2(I)));NFI=255*mat2gray(FI);%归一化SFI=fftshift(NFI);imgray=rgb2gray(SFI);%灰阶subplot(2,2,4),imshow(imgray);title('fftofcat');运行结果如下:图像添加高斯噪声与去除代码如下:I=imread('C:UsersjiaqingDesktopmatla
3、bhomeworkzhen.jpg');%读入图像%给图像添加噪声grayI=rgb2gray(I);nI=imnoise(grayI,'gaussian',0.05);subplot(2,2,1);imshow(nI);title('加入高斯噪声后的图像');%加入噪声后图像的傅立叶变换FI=abs((fft2(nI)));NFI=255*mat2gray(FI);%归一化SFI=fftshift(NFI);subplot(2,2,2),imshow(SFI);title('加入噪声后的傅里叶变换');xd=wiener2(nI,[33]);subplot(
4、2,2,3);imshow(xd);%去除噪声后图像的傅立叶变换FI=abs((fft2(xd)));NFI=255*mat2gray(FI);%归一化SFI=fftshift(NFI);subplot(2,2,4),imshow(SFI);title('去除噪声后的傅里叶变换');处理结果:
此文档下载收益归作者所有