I'm trying to do some image processing in GNU Octave using fft2 command, but i'm having problem with the inverse transform.
I can calculate the transform with no problem, do whatever i want with it, but when i return to space domain and try to plot the image, all i get is a all black image.
I even tried to only do the forward and inverse transform and nothing more, still same problem.
What can i do?
The image i'm using to test, by the way, is that one:
http://bootstrapbay.com/blog/wp-content/uploads/2014/05/yellow-taxi_vvvjao.png
Code:
I = imread('image.jpg');
imshow(I) % Produces image correctly
I2 = fft2(I);
I2 = ifft2(I2);
imshow(I2) % Produces black image