Borrar filtros
Borrar filtros

How to find the global mean(average)of the entire scene of a hyperion hyperspectral data.

1 visualización (últimos 30 días)
Hyperion Hyperspectral data is a satellite imagewhich contains 242 bands.Each band has 1300columns and 4000 rows of pixels.These pixels give reflectance values.I would like to calculate the global mean of the entire scene.Can you please help me with the matlab code for the same.

Respuestas (2)

Amit
Amit el 2 de En. de 2014
If by global mean, you mean the mean value of the reflectance values throughout the whole bands, then you can do something like this.
mean_band = zeros(242,1);
for i = 1:242 %Loop for each band
mean_band(i,1) = mean(mean(_data_from_ith_band_);
end
global_mean = mean(mean_band);
How do you have band data stored?

Image Analyst
Image Analyst el 2 de En. de 2014
Define global mean. It sounds ambiguous. Do you want the mean of each spectral band? If so use mean2() in the Image Processing Toolbox. After that you can do some kind of weighted average of all the means if you want.

Categorías

Más información sobre Hyperspectral Image Processing en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by