I'm taking the fft2
of an image which gives me a complex matrix, but when I transform it back with ifft2
the result is also a complex matrix and it is not the original image. What can be happening here?
image=('file.png');
F_image=fft2(moon);
IF_image=ifft2(F_image);