python边界提取,使用OpenCV Python提取所有边界框

I have an image that contains more than one bounding box.

5ddd693756af071ff66ab92b061a60e3.png

I need to extract everything that has bounding boxes in them. So far, from this site I've gotten this answer:

y = img[by:by+bh, bx:bx+bw]

cv2.imwrite(string + '.png', y)

It works, however, it only gets one. How should I modify the code? I tried putting it in the loop for contours but it still spews out one image instead of multiple ones.

Thank you so much in advance.

解决方案

there you go:

import cv2

im = cv2.imread('c:/data/ph.jpg')

gray=cv2.cvtColor(im,cv2.COLOR_BGR2GRAY)

contours, hierarchy = cv2.findContours(gray,cv2.RETR_LIST,cv2.CHAIN_APPROX_SIMPLE)[-2:]

idx =0

for cnt in contours:

idx += 1

x,y,w,h = cv2.boundingRect(cnt)

roi=im[y:y+h,x:x+w]

cv2.imwrite(str(idx) + '.jpg', roi)

#cv2.rectangle(im,(x,y),(x+w,y+h),(200,0,0),2)

cv2.imshow('img',im)

cv2.waitKey(0)

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值