cv2.drawContours()讲解

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)

 cv2.drawContours()讲解_第1张图片

 

你可能感兴趣的:(图像处理,计算机视觉,python,人工智能)