Effacer les filtres
Effacer les filtres

How the Peak value of the image histogram can be obtaind?

3 vues (au cours des 30 derniers jours)
ATHIRA
ATHIRA le 27 Mai 2014
How the Peak value of the image histogram can be obtaind?

Réponse acceptée

Image Analyst
Image Analyst le 27 Mai 2014
[pixelCounts, grayLevels] = imhist(grayImage);
[maxCount, indexOfMax] = max(pixelCounts);
grayLevelAtMax = grayLevels(indexOfMax);

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by