필터 지우기
필터 지우기

How can i plot hyperspectral data matrix?

조회 수: 1 (최근 30일)
vittorio calbucci
vittorio calbucci 2017년 12월 18일
댓글: Walter Roberson 2017년 12월 18일
I would like to rebuild the image from hyperspectral data matrix. My data matrix are made of 264 spectra of 248 values of lambda. The the image i would like to build has to be of 33*8 pixels where every pixel is a spectrum. Thank's

답변 (1개)

Walter Roberson
Walter Roberson 2017년 12월 18일
You can reshape() to [33, 8, 248], to get an array of pixels with 248 channels per pixel, but there is no way to plot in 248 dimensions.
Perhaps it would be acceptable to use volume visualization techniques, such as
volumeViewer( reshape(YourData, 33, 8, []) )
  댓글 수: 6
vittorio calbucci
vittorio calbucci 2017년 12월 18일
The results it's not really what i'm looking for and i got an error related to the image function. in my case it will be better to reshape the image in this way (248,33,8) but i already receive an error on the imagesc function
Walter Roberson
Walter Roberson 2017년 12월 18일
temp1 = reshape(YourArray, 8, 33, []);
temp2 = std(temp1, 0, 3);
imagesc( temp2 );
colormap(gray(256))

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

카테고리

Help CenterFile Exchange에서 Display Point Clouds에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by