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

あるグレースケール画像内の最大輝度の数値を求めたいのですが、適切な関数などはありますか。

답변 (1개)

Image Analyst
Image Analyst 2017년 10월 18일

2 개 추천

for a global max, try this:
maxGrayLevel = max(grayImage(:));
For local maxima, try this:
localMax = imregionalmax(grayImage);

질문:

2017년 10월 18일

답변:

2017년 10월 18일

Community Treasure Hunt

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

Start Hunting!