I assume you want to find Inverse Fourier transform of an image.
You may try this line of code
imagesc(ifft2(Img_FT));
ifft2 is used to return 2D inverse Fast Fourier transform of a matrix.
Refer to the link below for any clarifications.