Effacer les filtres
Effacer les filtres

Getting values of the histogram without actually plotting it

59 vues (au cours des 30 derniers jours)
D_coder
D_coder le 30 Août 2018
Commenté : D_coder le 4 Sep 2018
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).

Réponses (1)

the cyclist
the cyclist le 30 Août 2018
Sounds like you need the histcounts command.
  3 commentaires
the cyclist
the cyclist le 31 Août 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
D_coder le 4 Sep 2018
thats a great idea indeed

Connectez-vous pour commenter.

Catégories

En savoir plus sur Image Filtering and Enhancement dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by