how to find the height and width of an alphabet/letter
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
praveen rai
el 27 de Mayo de 2019
Comentada: praveen rai
el 27 de Mayo de 2019
i have a letter in which I want to find the height and width of this letter
any algorithm or code can suggest by anyone
0 comentarios
Respuesta aceptada
Image Analyst
el 27 de Mayo de 2019
Try
binaryImage = grayImage < 128;
props = regionprops(binaryImage, 'BoundingBox');
width = props.BoundingBox(3);
height = props.BoundingBox(4);
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Segmentation and Analysis 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!