how can i do 2d dft for image without using built-in function(fft2) and get matrix values for the separated magnitude and phase of an image after 2d dft?

조회 수: 1 (최근 30일)
i need to do 2d dft for an image using normal formula and get matrix values for separated mag and phase.

답변 (1개)

Steve Eddins
Steve Eddins 2013년 10월 30일
F = fft2(f);
F_mag = abs(F);
F_phase = angle(F);

카테고리

Help CenterFile Exchange에서 Images에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by