フィルターのクリア

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

3 ビュー (過去 30 日間)
venmal devi
venmal devi 2016 年 1 月 18 日
コメント済み: Walter Roberson 2016 年 2 月 15 日
please help me i need it immedaitely
  2 件のコメント
John D'Errico
John D'Errico 2016 年 1 月 18 日
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.

サインインしてコメントする。

採用された回答

Image Analyst
Image Analyst 2016 年 1 月 18 日
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 件)

カテゴリ

Help Center および File ExchangeImage Processing Toolbox についてさらに検索

Community Treasure Hunt

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

Start Hunting!

Translated by