How can i plot hyperspectral data matrix?
显示 更早的评论
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
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
2017-12-18
Walter Roberson
2017-12-18
volumeViewer is part of the Image Processing Toolbox.
It would help if you were to link to a sample of what you would like the result to look like.
vittorio calbucci
2017-12-18
Walter Roberson
2017-12-18
imagesc( std(reshape(YourArray, 8, 33, []),3))
colormap(gray(256))
vittorio calbucci
2017-12-18
Walter Roberson
2017-12-18
temp1 = reshape(YourArray, 8, 33, []);
temp2 = std(temp1, 0, 3);
imagesc( temp2 );
colormap(gray(256))
类别
在 帮助中心 和 File Exchange 中查找有关 Hyperspectral Image Processing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!