How to Inverse Fourier Transform this?

2 ビュー (過去 30 日間)
P.Milanraaj Purusouthman
P.Milanraaj Purusouthman 2020 年 3 月 24 日
回答済み: Prabhanjan Mentla 2020 年 3 月 27 日
Hey Everyone,
I have the fourier transform of an image using this code:
af = fft2(noisyImage);
saf = fftshift(af);
Img_FT = mat2gray(log(1+abs(saf)));
How do I inverse this Fourier Transform of Img_FT in this situation.

回答 (1 件)

Prabhanjan Mentla
Prabhanjan Mentla 2020 年 3 月 27 日
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.

カテゴリ

Help Center および File ExchangeDiscrete Fourier and Cosine Transforms についてさらに検索

製品

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by