Periodogram and Image Processing

1 回表示 (過去 30 日間)
Kosai
Kosai 2012 年 2 月 7 日
Hello all, How can i calculate and extract the periodogram for a Gray-Image(MxN) and then plot it ?

採用された回答

Wayne King
Wayne King 2012 年 2 月 7 日
xdft=fft2(x);
xdft=xdft.*conj(xdft);
xdft=xdft/(size(x,1)*size(x,2));
xdft=fftshift(xdft);
surf(xdft);

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by