필터 지우기
필터 지우기

power spectral density of image

조회 수: 20 (최근 30일)
leo leonardo
leo leonardo 2011년 2월 12일
댓글: Anitha Thomas 2019년 1월 16일
Hallo every one i need your help please
i want to calculate the power spectral density of an image (my image size is 256*256 und their pixel values between 0 and 2^8=256). i did not find in matlab how to calculate that for an image?
thank you for your help.

답변 (1개)

Vieniava
Vieniava 2011년 2월 12일
Try this:
imagesc( log10(abs(fftshift(fft2(Picture))).^2 ))
  댓글 수: 3
OLGA BARRERA
OLGA BARRERA 2018년 12월 6일
Hi,
I am having problem with the power spectral density of this image (circ2.tif), this is a 1024*1024
A = imread('circ2.tif');
imagesc( log10(abs(fftshift(fft2(A))).^2 ))
I only get an emply windows..
Thank you in advance for your help
Anitha Thomas
Anitha Thomas 2019년 1월 16일
change the code like this
A = imread('circ2.tif');
A1=rgb2gray(A);
imagesc( log10(abs(fftshift(fft2(A1))).^2 ))

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Parametric Spectral Estimation에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by