필터 지우기
필터 지우기

how to apply low pass and high pass filters using fft2 and fftshift?

조회 수: 18 (최근 30일)
Hadi Ghahremannezhad
Hadi Ghahremannezhad 2020년 9월 23일
답변: Soroush Vahidi 2022년 2월 11일
I am trying to apply low-pass and high-pass filters on a jpg image.
The filters are calculated by:
function [cL,cH] = getfilters(radius)
[x,y] = meshgrid(-128:127,-128:127);
z = sqrt(x.^2+y.^2);
cL = z < radius;
cH = ~cL;
end
so to filter the image, I have:
img = imread('a jpg image')
ft = fftshift(fft2(img));
[cL, cH] = getfilters(40);
l_ft = ft .* cL;
h_ft = ft .* cH;
low_filtered_image = ifft2(ifftshift(l_ft), 'symmetric');
high_filtered_image = ifft2(ifftshift(h_ft), 'symmetric');
To display the filtered inverse Fourier transform:
low_f = uint8(abs(low_filtered_image));
high_f = uint8(abs(high_filtered_image));
figure, imshow(low_f); figure, imshow(high_f);
Which parts are wrong in this code?

답변 (1개)

Soroush Vahidi
Soroush Vahidi 2022년 2월 11일
It is exactly my question too.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by