I process image using MatLab.
I do the following steps on an image:
- I make an image read.
- I take the Fourier of image.
- I take the real of Fourier transformed image.
While performing above steps I got a double rotated image in result. I don't know its reason why this happened.
Can some one please explain its reason that why in result a double rotated image produced?
The piece of code is here:
imfftreal = real(imfft);
im = uint8(ifft2(imfftreal));
imshow(im);
Figure;