グレースケール画像の最大輝度
显示 更早的评论
回答(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!