Borrar filtros
Borrar filtros

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

3 visualizaciones (últimos 30 días)
please help me i need it immedaitely

Respuesta aceptada

Image Analyst
Image Analyst el 18 de En. de 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.

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by