グレースケール画像の最大輝度
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
あるグレースケール画像内の最大輝度の数値を求めたいのですが、適切な関数などはありますか。
0 comentarios
Respuestas (1)
Image Analyst
el 18 de Oct. de 2017
for a global max, try this:
maxGrayLevel = max(grayImage(:));
For local maxima, try this:
localMax = imregionalmax(grayImage);
0 comentarios
Ver también
Categorías
Más información sobre イメージ タイプの変換 en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!