Getting values of the histogram without actually plotting it
55 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Hello, I am working on automatically adjusting the threshold for an image. How do I select a particular percentage of the peak of the histogram for thresholding without actually plotting the values. The image below was plotted using histogram(Image).
0 comentarios
Respuestas (1)
the cyclist
el 30 de Ag. de 2018
3 comentarios
the cyclist
el 31 de Ag. de 2018
The histcounts command
N = histcounts(X);
outputs the bin counts, without plotting them.
You could find the maximum value of this
maxN = max(N);
and then set your threshold as some percentage of this maximum value.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!