Periodogram and Image Processing

1 次查看(过去 30 天)
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 个)

Community Treasure Hunt

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

Start Hunting!

Translated by