グレースケール画像の最大輝度
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
あるグレースケール画像内の最大輝度の数値を求めたいのですが、適切な関数などはありますか。
0 Commenti
Risposte (1)
Image Analyst
il 18 Ott 2017
for a global max, try this:
maxGrayLevel = max(grayImage(:));
For local maxima, try this:
localMax = imregionalmax(grayImage);
0 Commenti
Vedere anche
Categorie
Scopri di più su イメージ タイプの変換 in Help Center e File Exchange
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!