资源简介

图片中有明显的周期性噪声,屏蔽光谱中的特定区域达到去噪,使用的滤波为理想滤波器。

资源截图

代码片段和文件信息

image = imread(‘SaturnRings.jpg‘);

image = rgb2gray(image);

spectra = fftshift(fft2(image230304));

% spectra = log(spectra);

spectra(1:110152-3:152+3) = 0; % ideal filter

spectra(120:end152-3:152+3) = 0; % ideal filter

new_image = uint8(real(ifft2(ifftshift(spectra))));

new_image = new_image(1:2261:300);

subplot(121)imshow(new_image)title(‘Denoised‘);
subplot(122)imshow(image)title(‘Corrupted‘);

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      17675  2014-02-27 19:11  SaturnRings.jpg

     文件        434  2014-02-28 03:32  part2.m

----------- ---------  ---------- -----  ----

                18109                    2


评论

共有 条评论