Which function can I use to implement the following image filter?
1 次查看(过去 30 天)
显示 更早的评论
I have two questions,
(1) What kind of image filter is this? Is it a band-pass filter?
(2) Which MATLAB function can I use to implement this filter?
Reference:
0 个评论
采纳的回答
Image Analyst
2017-1-3
编辑:Image Analyst
2017-1-3
It looks like a radial low pass filter. If Cx and Cy are not zero then it's like it's filtering (masking) out a spot in the spectrum, so that's kind of like a bandpass filter, but not really since it's a spot not a band.
First they rotate the 2D spectrum by theta for some reason. Then they create H which looks like it's supposed to be multiplied by the image spectrum in Fourier space. You can fft the image, then create the H image, then call
fftImage = fft(grayImage);
outputSpectrum = fftImage .* H;
spatialDomainImage = ifft2(outputSpectrum);
See if you can create H yourself. It's not hard.
3 个评论
Image Analyst
2017-1-3
Well it might be. I'm not that familiar with Butterworth. It could be that they're just shifting prior to rotating to do basically what the MATLAB function fftshift() does. In that case it's just moving the DC location to the center of the image, or to the corners, depending on how it started out, as long as Cx and Cy are halfway along the image.
更多回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!