MATLAB: How to get spectral curve from multiple remote sensing images

remote sensingspectral curve

How to get spectral curve from multiple remote sensing images?

Best Answer

If you stack them into a 3D array, then the spectrum at some particular row and column is
theSpectrum = yourSpectralImage(row, column, :);
Related Question