How the Peak value of the image histogram can be obtaind?
1 visualizzazione (ultimi 30 giorni)
Mostra commenti meno recenti
How the Peak value of the image histogram can be obtaind?
0 Commenti
Risposta accettata
Image Analyst
il 27 Mag 2014
[pixelCounts, grayLevels] = imhist(grayImage);
[maxCount, indexOfMax] = max(pixelCounts);
grayLevelAtMax = grayLevels(indexOfMax);
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Histograms in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!