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

2 views (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)

Categories

Find more on Images in Help Center and File Exchange

Community Treasure Hunt

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

Start Hunting!