CODE for Hyperspectral AVIRIS datasets RGB BAND combination
Show older comments
I am using Hyperspectral AVIRIS datasets. I have used the code for reading.X=multibandread("cupriteReflectance.dat",[522,601,224],'int16',0,'bil','ieee-le'); How to make RGB band combination from this data? What is the code?
1 Comment
harrynecek
on 3 Nov 2018
Have you figured it out? I tried two methods but both return a completely white picture for some reason.
KSC_RGB = cat(3, KSC_r, KSC_g, KSC_b);
KSC_RGB2(:,:,1) = KSC_r;
KSC_RGB2(:,:,2) = KSC_g;
KSC_RGB2(:,:,3) = KSC_b;
Answers (0)
Categories
Find more on Process Point Clouds in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!