欢迎您访问365答案网,请分享给你的朋友!
生活常识 学习资料

cv2.drawContours讲解

时间:2023-08-25

cv2.drawContours(image, contours, contourIdx, color, thickness=None, lineType=None, hierarchy=None, maxLevel=None, offset=None)

第一个参数是指明在哪幅图像上绘制轮廓;image为三通道才能显示轮廓第二个参数是轮廓本身,在Python中是一个list;thickness参数指定绘制轮廓list中的哪条轮廓,如果是-1,则绘制其中的所有轮廓。其中thickness表明轮廓线的宽度,如果是-1(cv2.FILLED),则为填充模式。

re = cv2.drawContours(img_ori.copy(), [box], 0, (0, 255, 0), 3)

re = cv2.drawContours(image.copy(), [box], 0, (0, 255, 0), -1)

 

 

Copyright © 2016-2020 www.365daan.com All Rights Reserved. 365答案网 版权所有 备案号:

部分内容来自互联网,版权归原作者所有,如有冒犯请联系我们,我们将在三个工作时内妥善处理。