CODE for Hyperspectral AVIRIS datasets RGB BAND combination
Mostrar comentarios más antiguos
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 comentario
harrynecek
el 3 de Nov. de 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;
Respuestas (0)
Categorías
Más información sobre Process Point Clouds en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!