Clear Filters
Clear Filters

Obtaining image filter from original and filtered image with FFT

3 views (last 30 days)
Hi,
I have a grayscale original image, and an image obtained by filtering the original with a certain filter. I need to obtain the image of the filter that has been used.
I tried calculating the fft of the two images I have, then inverse fft for the filter:
filter = ifft2 ( fft2(filteredImg)./fft2(OriginalImg));
This does not work, as it gives me something looking like noise:
What is the problem?
  1 Comment
Star Strider
Star Strider on 19 Mar 2017
First, don’t use filter as a variable name. It is the name of a MATLAB function that you may need, and then won’t be able to use.
Second, if you use imfilter on your original image with your identified filter, does it return your original filtered image? If it does, your identified filter is correct.

Sign in to comment.

Answers (0)

Community Treasure Hunt

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

Start Hunting!