i need the code for local maximum and local minimum of histogram for the gray scale and color image
5 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Akzeptierte Antwort
Walter Roberson
am 13 Dez. 2015
You might possibly be asking for findpeaks(). Or you might possibly be asking for http://www.mathworks.com/help/images/ref/imregionalmax.html. Or perhaps you are looking for http://www.mathworks.com/help/vision/ref/vision.localmaximafinder.step.html . Or maybe http://www.mathworks.com/help/wavelet/ref/localmax.html. Or you could use http://www.mathworks.com/help/images/ref/imdilate.html and http://www.mathworks.com/help/images/ref/imerode.html
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
am 18 Jan. 2016
Then
[peakValues, peakIndexes] = findpeaks(counts);
[~, valleyIndexes] = findpeaks(-counts);
valleyValues = counts(valleyIndexes);
should do it for you.
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Image Filtering and Enhancement finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!