how can I seperate magnitude and phase from an image using 2d dft?(fft2)
25 次查看(过去 30 天)
显示 更早的评论
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 个评论
采纳的回答
KALYAN ACHARJYA
2019-11-13
编辑:KALYAN ACHARJYA
2019-11-13
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 个评论
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Fourier Analysis and Filtering 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!