Filter löschen
Filter löschen

How to obtain value from histogram?

1 Ansicht (letzte 30 Tage)
nurul hafizah
nurul hafizah am 4 Mai 2015
Kommentiert: Star Strider am 5 Mai 2015
I am using imhist to create histogram from an image. Now I want to know the value of each bar from Y-axis in the histogram. Can I know how to do that??

Akzeptierte Antwort

Star Strider
Star Strider am 4 Mai 2015
You only need to ask imhist to output those data:
[counts,binLocations] = imhist(I)
  4 Kommentare
nurul hafizah
nurul hafizah am 5 Mai 2015
do you know how to calculate mean using counts value?
Star Strider
Star Strider am 5 Mai 2015
You need both ‘counts’ and ‘binLocations’:
image_mean = sum(counts.*binLocations)/sum(counts);

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by