i need the code for local maximum and local minimum of histogram for the gray scale and color image
3 ビュー (過去 30 日間)
古いコメントを表示
please help me
0 件のコメント
採用された回答
Walter Roberson
2015 年 12 月 13 日
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 件のコメント
Image Analyst
2016 年 1 月 18 日
Then
[peakValues, peakIndexes] = findpeaks(counts);
[~, valleyIndexes] = findpeaks(-counts);
valleyValues = counts(valleyIndexes);
should do it for you.
その他の回答 (0 件)
参考
カテゴリ
Help Center および File Exchange で Image Filtering and Enhancement についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!