필터 지우기
필터 지우기

i need the code for local maximum and local minimum of histogram for the gray scale and color image

조회 수: 1 (최근 30일)
please help me

채택된 답변

Walter Roberson
Walter Roberson 2015년 12월 13일
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
Image Analyst 2016년 1월 18일
Then
[peakValues, peakIndexes] = findpeaks(counts);
[~, valleyIndexes] = findpeaks(-counts);
valleyValues = counts(valleyIndexes);
should do it for you.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

Community Treasure Hunt

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

Start Hunting!

Translated by