How the Peak value of the image histogram can be obtaind?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
ATHIRA
am 27 Mai 2014
Beantwortet: Image Analyst
am 27 Mai 2014
How the Peak value of the image histogram can be obtaind?
0 Kommentare
Akzeptierte Antwort
Image Analyst
am 27 Mai 2014
[pixelCounts, grayLevels] = imhist(grayImage);
[maxCount, indexOfMax] = max(pixelCounts);
grayLevelAtMax = grayLevels(indexOfMax);
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Histograms finden Sie in Help Center und File Exchange
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!