how can i write a code in order to get spectral reflectance plot of a pixel in a hyperspectral image
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I want to get the reflectance profile of a pixel.how can the code be written for a hypeerion hyperspectral data
1 commentaire
Shrutika Sawant
le 27 Fév 2017
Modifié(e) : Walter Roberson
le 27 Fév 2017
Use the following code
reflectance = squeeze(img(i, j,:));
reflectance = reflectance/max(reflectance(:));
plot(reflectance)
Réponses (1)
Image Analyst
le 4 Jan 2014
Assuming you have a 3D matrix where each image plane is the scene taken at a different wavelength, you can just get a spectrum like this:
theSpectrum = hyperSpectralImage3D(row, column, :);
7 commentaires
Voir également
Catégories
En savoir plus sur Hyperspectral Image Processing dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!