MATLAB: Periodogram and Image Processing

digital image processingimage segmentation

Hello all, How can i calculate and extract the periodogram for a Gray-Image(MxN) and then plot it ?

Best Answer

xdft=fft2(x);
xdft=xdft.*conj(xdft);
xdft=xdft/(size(x,1)*size(x,2));
xdft=fftshift(xdft);
surf(xdft);
Related Question