필터 지우기
필터 지우기

compute image to have RMS, skewness and kurtosis images

조회 수: 4 (최근 30일)
YJ
YJ 2014년 4월 23일
image pixel data are stored as a matrix format named "A1" (688 x 512) - grey-scale Since the data should be converted to a double precision format,
Data_d = double(A1.Data);
1. How do I compute RMS, skewness and kurtosis images?
2. Also how do i compute PDFS plots for those images?
here is a code I wrote..
I=imread('A1');
I2 = im2double(I);
s=skewness(I2(:))
figure;imagesc(s);colormap jet;colorbar;
k = kurtosis(I2(:)
figure;imagesc(k);colormap jet;colorbar;
figure that pop up after running a code is definitely wrong.. but I dont know why..
figure I got
figure I need to get

답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by