Determine min & max intensity value from histogram.
1 view (last 30 days)
Show older comments
How do you determine the minimum and maximum intensity value from looking at the histogram?
0 Comments
Answers (1)
Walter Roberson
on 15 Oct 2012
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 Comments
Image Analyst
on 15 Oct 2012
[counts binValues] = hist(yourArray, numberOfBins);
minBinValue = find(counts>0, 1, 'first');
maxBinValue = find(counts>0, 1, 'last');
See Also
Categories
Find more on Histograms in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!