Effacer les filtres
Effacer les filtres

i need the code for local maximum and local minimum of histogram for the gray scale and color image

1 vue (au cours des 30 derniers jours)
please help me

Réponse acceptée

Walter Roberson
Walter Roberson le 13 Déc 2015
My crystal ball is predicting that you are doing histogram equalization and that what you need is mode after quantizing the values.
  3 commentaires
Image Analyst
Image Analyst le 18 Jan 2016
Then
[peakValues, peakIndexes] = findpeaks(counts);
[~, valleyIndexes] = findpeaks(-counts);
valleyValues = counts(valleyIndexes);
should do it for you.

Connectez-vous pour commenter.

Plus de réponses (0)

Community Treasure Hunt

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

Start Hunting!

Translated by