文档详情

基于matlab数字图像处理之低通滤波器.doc

发布:2017-02-05约2.4千字共6页下载文档
文本预览下载声明
实践一:理想低通滤波器、Butterworth低通滤波器、高斯低通滤波器 1.1.1理想低通滤波器实践代码: I=imread(couple.bmp); %I=rgb2gray(I); subplot(221),imshow(I); title(原图像); s=fftshift(fft2(I)); subplot(223), imshow(abs(s),[]); title(图像傅里叶变换所得频谱); subplot(224), imshow(log(abs(s)),[]); title(图像傅里叶变换取对数所得频谱); [a,b]=size(s); a0=round(a/2);
显示全部
相似文档