How to find the highest gray value in a color image?

조회 수: 7 (최근 30일)
matlabgeek
matlabgeek 2016년 1월 20일
댓글: Image Analyst 2016년 1월 20일
How do we find the highest gray values in a color image. If this highest gray value in certain channel, for example, further, how do we find out other locations which have highest gray value?

채택된 답변

Walter Roberson
Walter Roberson 2016년 1월 20일
grayimage = rgb2gray(YourRGBImage);
maxgray = max(grayimage(:));
grayidx = find(grayimage == maxgray);
These are the linear indices. If you want row and column instead then use
[grayidxrow, grayidxcol] = find(grayimage == maxgray);
  댓글 수: 4
Walter Roberson
Walter Roberson 2016년 1월 20일
Correct.
Image Analyst
Image Analyst 2016년 1월 20일
If by "highest gray value in certain channel" then you mean the highest red value, the highest green value, and the highest blue value, then you'd to that on each color channel independently.
maxR = mean2(rgbImage(:,:,1));
maxG = mean2(rgbImage(:,:,2));
maxB = mean2(rgbImage(:,:,3));
Of course the highest in each channel may not all lie at the very same pixel. The brightest red value may lie at a different place than the highest blue value.

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

추가 답변 (0개)

태그

Community Treasure Hunt

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

Start Hunting!

Translated by