Determine min & max intensity value from histogram.

Respuestas (1)

Walter Roberson
Walter Roberson el 15 de Oct. de 2012

0 votos

The minimum intensity value is somewhere in the range covered by the first bin with a non-zero count. The maximum intensity value is somewhere in the range covered by the last bin with a non-zero count. You cannot determine the precise values unless your inputs were quantized and your bins hold only a single quantum (e.g., distinct integers.)

2 comentarios

Esther
Esther el 15 de Oct. de 2012
what does non-zero count means?
[counts binValues] = hist(yourArray, numberOfBins);
minBinValue = find(counts>0, 1, 'first');
maxBinValue = find(counts>0, 1, 'last');

Iniciar sesión para comentar.

Preguntada:

el 15 de Oct. de 2012

Community Treasure Hunt

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

Start Hunting!

Translated by