CODE for Hyperspectral AVIRIS datasets RGB BAND combination

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

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;

Sign in to comment.

Answers (0)

Products

Release

R2017a

Asked:

on 22 May 2018

Commented:

on 3 Nov 2018

Community Treasure Hunt

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

Start Hunting!