How to measure the horizontal and vertical axis length of an object?

2 visualizaciones (últimos 30 días)
I want to measure the horizontal and vertical axis length of the object in the attached image. How can I do that?

Respuesta aceptada

Image Analyst
Image Analyst el 3 de Dic. de 2017
props = regionprops(binaryImage, 'BoundingBox');
horizontalWidth = props.BoundingBox(3);
verticalHeight = props.BoundingBox(4);

Más respuestas (0)

Categorías

Más información sobre Images en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by