【发布时间】:2016-09-20 15:42:25
【问题描述】:
我想使用陷波滤波器消除图像中的周期性噪声。我执行以下步骤:
I = imread('...img....');
ft = fftshift(fft2(I));
[m,n] = size(ft);
filt = ones(m,n);
%filt(......) = 0; % my problem is here
ft = ft .* filt;
ifft_ = ifft2(ifftshift( ft));
so i don't know what exactly to set to zero to get the proper result.
【问题讨论】:
标签: matlab image-processing filtering noise