How the Peak value of the image histogram can be obtaind?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
ATHIRA
el 27 de Mayo de 2014
Respondida: Image Analyst
el 27 de Mayo de 2014
How the Peak value of the image histogram can be obtaind?
0 comentarios
Respuesta aceptada
Image Analyst
el 27 de Mayo de 2014
[pixelCounts, grayLevels] = imhist(grayImage);
[maxCount, indexOfMax] = max(pixelCounts);
grayLevelAtMax = grayLevels(indexOfMax);
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Histograms en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!