How do I generate a two dimensional Fourier Transform with a given image in a .mat file?
Mostra commenti meno recenti
I don't even know how to start. Help will be much appreciated.
Thank you
1 Commento
David Young
il 9 Mar 2015
The documentation for fft2 and save will help you get started.
Risposte (2)
Konstantinos Sofos
il 9 Mar 2015
Hi,
Mathworks documentation is excellent and is always a good point to start. Have a look here Fourier Transform and Image Transforms
Assuming that I is your input image and F is its Fourier Transform (i.e. F = fft2(I))
You can use this code:
F = fftshift(F); % Center FFT
F = abs(F); % Get the magnitude
F = log(F+1); % Use log, for perceptual scaling, and +1 since log(0) is undefined
F = mat2gray(F); % Use mat2gray to scale the image between 0 and 1
imshow(F,[]); % Display the result
Regards
1 Commento
sean darmadi
il 9 Mar 2015
Image Analyst
il 9 Mar 2015
0 voti
Attached are two of my FFT2 demos for you.
2 Commenti
sean darmadi
il 9 Mar 2015
Image Analyst
il 9 Mar 2015
You forgot to attach your .mat file and your .m file so I'm unable to do anything to help you (yet).
Categorie
Scopri di più su Fourier Analysis and Filtering in Centro assistenza e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!