cv2.drawcontours()函数参数详解
时间: 2023-09-29 17:03:00 浏览: 176
cv2.drawContours()函数是OpenCV中用于绘制轮廓的函数,它的参数较多,下面是各个参数的详解:
1. img:要绘制轮廓的图像。
2. contours:轮廓本身,可以是一个 Python 列表,每个元素都是一个表示轮廓的 numpy 数组。
3. contourIdx:指定要绘制的轮廓的索引。如果设置为-1,则绘制所有轮廓。
4. color:指定轮廓线的颜色。
5. thickness:指定轮廓线的宽度。如果设置为-1,则填充轮廓内部。
6. lineType:指定轮廓线的类型。默认值为cv2.LINE_8。
7. hierarchy:可选参数,用于指定轮廓的层次结构。如果为空,则假定所有轮廓都位于同一级别。
例如,以下代码将绘制图像中所有轮廓的轮廓线:
```
import cv2
import numpy as np
img = cv2.imread('image.jpg')
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
ret, thresh = cv2.threshold(gray, 127, 255, cv2.THRESH_BINARY)
contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(img, contours, -1, (0, 255, 0), 3)
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在上面的代码中,我们首先使用cv2.findContours()函数找到图像中的所有轮廓,然后使用cv2.drawContours()函数将轮廓线绘制在原始图像上。
阅读全文