Reputation: 95
I am trying to implement, in Python, some functions that transform images to their Fourier domain and vice-versa, for image processing tasks.
I implemented the 2D-DFT using repeated 1D-DFT, and it worked fine, but when I tried to implement 2D inverse DFT using repeated inverse 1D-DFT, some weird problem occurred: when I transform an image to its Fourier domain and then back to the image domain, it looks like the image was reflected and merged with its reflection, as can be seen here:
This is the input:
and this is the output
This is the function that is responsible for the mess:
def IDFT2(fourier_image):
image = np.zeros(fourier_image.shape)
for col in range(image.shape[1]):
image[:, col] = IDFT1(fourier_image[:, col])
for row in range(image.shape[0]):
image[row, :] = IDFT1(image[row,:])
return image
What did I do wrong? I am pretty sure that IDFT1 works fine, and so is the regular 2D-DFT.
Upvotes: 1
Views: 4226
Reputation: 51835
I do not use Python so I am not confident to analyze your code but my bet is that you most likely forget to implement complex values at some stage....
it should be:
if you use just real to complex domain DFT/iDFT in the second passes (bullets #2,#6) then it would create the mirroring because DFT of real values is a mirrored sequence ... Btw. it does not matter if you process rows or columns first ... also you can process rows first in DFT and columns first in iDFT the result should be the same +/- floating errors ...
for more info see
and all the sub-links there especially the 2D FFT and wrapping example
so you can compare your results with something working
Upvotes: 3