How can I divide height and width of 4 separate bounding boxes and compare it so that I can extract the object based on certain critera

1 回表示 (過去 30 日間)
So, I have created bounding box for each object in binary image using the for loops. Now I want to extract height and the width and divide height and width of all the object bounding boxes and only keep those bounding boxes with objects in it that meets the certain value. Any ideas?

採用された回答

Image Analyst
Image Analyst 2019 年 4 月 19 日
Since you created the bounding boxes of the objects in the binary image, presumably with regionprops(), you already know their height and width of all the bounding boxes. You can keep certain ones by making a logical vector saying whether or not to keep it, then use that to extract only the ones you want to keep. For example if you only want widths > 30, you can do
props = regionprops(binaryImage, 'BoundingBox');
allBB = [props.BoundingBox];
allWidths = allBB(3:4:end);
keeperIndexes = allWidths > 30;
keeperProps = props(keeperIndexes);

その他の回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by