グレースケール画像の最大輝度

15 ビュー (過去 30 日間)
Chikako Kuriyama
Chikako Kuriyama 2017 年 10 月 18 日
回答済み: Image Analyst 2017 年 10 月 18 日
あるグレースケール画像内の最大輝度の数値を求めたいのですが、適切な関数などはありますか。

回答 (1 件)

Image Analyst
Image Analyst 2017 年 10 月 18 日
for a global max, try this:
maxGrayLevel = max(grayImage(:));
For local maxima, try this:
localMax = imregionalmax(grayImage);

Community Treasure Hunt

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

Start Hunting!