minimum boundingbox of object

i wanna find minimum boundingbox that can fit in qr code . i searched and i diidn't know how to implement it pleade help

 Accepted Answer

Matt J
Matt J on 22 Dec 2021
Edited: Matt J on 22 Dec 2021
load Image
BW=bwareafilt( imclose(~Image,ones(25)) ,1);
reg=regionprops(BW,'BoundingBox')
reg = struct with fields:
BoundingBox: [428.5000 172.5000 322 321]
imshow(Image)
drawrectangle('Position',reg.BoundingBox,'Color','red');

More Answers (0)

Categories

Tags

Asked:

on 22 Dec 2021

Edited:

on 22 Dec 2021

Community Treasure Hunt

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

Start Hunting!