フィルターのクリア

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 日間)
saroram r
saroram r 2013 年 10 月 30 日
編集済み: saroram r 2013 年 12 月 24 日
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);

Community Treasure Hunt

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

Start Hunting!

Translated by