필터 지우기
필터 지우기

Periodogram and Image Processing

조회 수: 4 (최근 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개)

Community Treasure Hunt

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

Start Hunting!

Translated by