フィルターのクリア

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 Center および File ExchangeExplore 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