Filter löschen
Filter löschen

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

1 Ansicht (letzte 30 Tage)
please help me

Akzeptierte Antwort

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

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by