Azzera filtri
Azzera filtri

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

1 visualizzazione (ultimi 30 giorni)
please help me

Risposta accettata

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

Accedi per commentare.

Più risposte (0)

Community Treasure Hunt

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

Start Hunting!

Translated by