how to find the local maxima and minima of histogram for color image

2 Ansichten (letzte 30 Tage)
please help me i need it immedaitely

Akzeptierte Antwort

Image Analyst
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.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by