Periodogram and Image Processing
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
Hello all, How can i calculate and extract the periodogram for a Gray-Image(MxN) and then plot it ?
0 Commenti
Risposta accettata
Wayne King
il 7 Feb 2012
xdft=fft2(x);
xdft=xdft.*conj(xdft);
xdft=xdft/(size(x,1)*size(x,2));
xdft=fftshift(xdft);
surf(xdft);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Image Processing Toolbox in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!