how to find the local maxima and minima of histogram for color image
2 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
venmal devi
am 18 Jan. 2016
Kommentiert: Walter Roberson
am 15 Feb. 2016
please help me i need it immedaitely
2 Kommentare
John D'Errico
am 18 Jan. 2016
Don't post the same question multiple times every time you want to add some information. Posting multiple times will not get you a faster or better answer.
Akzeptierte Antwort
Image Analyst
am 18 Jan. 2016
Like we said in your duplicate question from last month, use findpeaks() in the Signal Processing Toolbox
[peakValues, peakIndexes] = findpeaks(counts);
[~, valleyIndexes] = findpeaks(-counts);
valleyValues = counts(valleyIndexes);
just do that for each histogram from each color channel.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!