how can I seperate magnitude and phase from an image using 2d dft?(fft2)

조회 수: 38 (최근 30일)
asd.pngwhen 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)

채택된 답변

KALYAN ACHARJYA
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개)

카테고리

Help CenterFile Exchange에서 Discrete 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