Effacer les filtres
Effacer les filtres

Periodogram and Image Processing

4 vues (au cours des 30 derniers jours)
Kosai
Kosai le 7 Fév 2012
Hello all, How can i calculate and extract the periodogram for a Gray-Image(MxN) and then plot it ?

Réponse acceptée

Wayne King
Wayne King le 7 Fév 2012
xdft=fft2(x);
xdft=xdft.*conj(xdft);
xdft=xdft/(size(x,1)*size(x,2));
xdft=fftshift(xdft);
surf(xdft);

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by