Clear Filters
Clear Filters

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

1 view (last 30 days)
I want to measure the horizontal and vertical axis length of the object in the attached image. How can I do that?

Accepted Answer

Image Analyst
Image Analyst on 3 Dec 2017
props = regionprops(binaryImage, 'BoundingBox');
horizontalWidth = props.BoundingBox(3);
verticalHeight = props.BoundingBox(4);

More Answers (0)

Community Treasure Hunt

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

Start Hunting!