How to Inverse Fourier Transform this?
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
P.Milanraaj Purusouthman
el 24 de Mzo. de 2020
Respondida: Prabhanjan Mentla
el 27 de Mzo. de 2020
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.
0 comentarios
Respuestas (1)
Prabhanjan Mentla
el 27 de Mzo. de 2020
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.
0 comentarios
Ver también
Categorías
Más información sobre Discrete Fourier and Cosine Transforms en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!