Drawing rectangles around binary image objects from region props

18 次查看(过去 30 天)
Hi, from the binary image above, I've tried drawing boundaries around the object and successfully counted them. But I'm thinking of trying another method which is to use the regionprops to extract information of the location of the blobs. But I do not know how to draw a rectangle around them.
info = regionprops(img2,'Boundingbox')
By using this command, the command windows shows
4×1 struct array with fields:
BoundingBox
Which from what I guess is the total of bounding boxes it found from the image similar to the boundary way that I used. Can I use this information and draw a rectangle for the images and and display it in my source image?

采纳的回答

KSSV
KSSV 2018-7-12
info = regionprops(img2,'Boundingbox') ;
imshow(img2)
hold on
for k = 1 : length(info)
BB = info(k).BoundingBox;
rectangle('Position', [BB(1),BB(2),BB(3),BB(4)],'EdgeColor','r','LineWidth',2) ;
end
  6 个评论
Adam Campos
Adam Campos 2023-3-7
Thank you @KSSV, that is what I had been looking for. Is this in the Matlab documentation somewhere?

请先登录,再进行评论。

更多回答(1 个)

smitha suresh
smitha suresh 2021-2-22
how to draw seperate bounding boxes for meged objects
  1 个评论
Walter Roberson
Walter Roberson 2021-2-22
How are the merged objects represented? Have you already detected them separately?
For example if the input were
|---|
| |__
|___| |
|___|
then have you already broken that apart into two rectangles, or do you still need to figure out how to break them up?
If you have already broken them up, then when you draw the bounding boxes, do you want all of the edges shown (perhaps rectangles of different colors) or only exterior edges like
|---|
| |__
|__ |
|___|

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Images 的更多信息

产品


版本

R2017a

Community Treasure Hunt

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

Start Hunting!

Translated by