필터 지우기
필터 지우기

Find max value on images

조회 수: 6 (최근 30일)
Mohamed Elbeialy
Mohamed Elbeialy 2021년 4월 20일
댓글: Image Analyst 2021년 4월 21일
How to find the max value of those punch of images

답변 (1개)

Image Analyst
Image Analyst 2021년 4월 20일
What is a "punch" of images? And what is your definition of brightest for a color image? Do you just want to convert to gray scale and find the brightest? Something like (untested)
grayImage = rgb2gray(rgbImage);
maxValue = max(grayImage(:))
maxMap = grayImage == maxValue;
rgb2 = imoverlay(grayImage, maxMap);
imshow(rgb2);
  댓글 수: 11
Walter Roberson
Walter Roberson 2021년 4월 21일
Image Analyst
Image Analyst 2021년 4월 21일
@Mohamed Elbeialy, I'll take a look at that when/if I get time. But did this answer solve this problem? If so, please accept it.

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

카테고리

Help CenterFile Exchange에서 Explore and Edit Images with Image Viewer App에 대해 자세히 알아보기

제품


릴리스

R2020a

Community Treasure Hunt

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

Start Hunting!

Translated by