how can I seperate magnitude and phase from an image using 2d dft?(fft2)
25 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
DOHYUN JANG
le 13 Nov 2019
Modifié(e) : KALYAN ACHARJYA
le 13 Nov 2019
when you activate the file. four image should appear like this.
img1, img2, img1 magnitude + img2 phase , img1 phase + img2 magnitude . 2D DFT method should be used in last two image (seperating magnitude and phase)
0 commentaires
Réponse acceptée
KALYAN ACHARJYA
le 13 Nov 2019
Modifié(e) : KALYAN ACHARJYA
le 13 Nov 2019
Do the same for considering two images and show mag1+phase1 and so on, here I have shown how you calculate the mag and phase for one image
fft_result=fft2(im);
mag=abs(fft_result);
phase=angle(fft_result);
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Fourier Analysis and Filtering dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!