How to fit rectangles on blobs on binary image

11 views (last 30 days)
I have this binary image:
I need to find 2 rectangles that fit around the two blobs as best as possible. What's the best method to apply?
Thanks for any help!

Accepted Answer

Image Analyst
Image Analyst on 7 Jan 2021
John D'Errico's function will give you the minimal bounding rectangle, even if it would be tilted:
regionprops() will only give you bounding boxes that are aligned with the edges of the image.

More Answers (1)

Matt J
Matt J on 7 Jan 2021
regionprops(BW, 'BoundingBox')

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!