グレースケール画像の最大輝度
Afficher commentaires plus anciens
あるグレースケール画像内の最大輝度の数値を求めたいのですが、適切な関数などはありますか。
Réponses (1)
Image Analyst
le 18 Oct 2017
for a global max, try this:
maxGrayLevel = max(grayImage(:));
For local maxima, try this:
localMax = imregionalmax(grayImage);
Catégories
En savoir plus sur イメージ タイプの変換 dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!