グレースケール画像の最大輝度
古いコメントを表示
回答 (1 件)
Image Analyst
2017 年 10 月 18 日
for a global max, try this:
maxGrayLevel = max(grayImage(:));
For local maxima, try this:
localMax = imregionalmax(grayImage);
カテゴリ
ヘルプ センター および File Exchange で イメージ タイプの変換 についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!