Getting values of the histogram without actually plotting it
Mostra commenti meno recenti

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).
Risposte (1)
the cyclist
il 30 Ago 2018
2 voti
3 Commenti
D_coder
il 31 Ago 2018
the cyclist
il 31 Ago 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.
D_coder
il 4 Set 2018
Categorie
Scopri di più su Histograms in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!