Display hyperspectral image problem
5 ビュー (過去 30 日間)
古いコメントを表示
Whenever I am trying to display using imshow ,the hyperspectral image is showing fully white.No image is showing but in envi software I can clearly see the image.I have attached the screenshot.Please anybody help me to do this.

0 件のコメント
採用された回答
Image Analyst
2022 年 6 月 5 日
The problem is your data array has floating point values beyond a value of 1. Try using [] in imshow to scale them:
imshow(data(:, :, 50), []);
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!