cv2.drawContours()
时间: 2023-08-18 14:13:52 浏览: 91
cv2.drawContours()是OpenCV库中的一个函数,用于在图像上绘制轮廓。它接受以下参数:
- image:要绘制轮廓的图像。
- contours:包含轮廓点的列表。
- contourIdx:指定要绘制的轮廓的索引。如果为负数,则绘制所有的轮廓。
- color:指定轮廓的颜色。
- thickness:指定轮廓线的厚度。
- lineType:指定轮廓线的类型。
- hierarchy:包含轮廓层次结构信息的可选参数。
示例代码:
```python
import cv2
image = cv2.imread('image.jpg')
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
ret, thresh = cv2.threshold(gray, 127, 255, 0)
contours, hierarchy = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
cv2.drawContours(image, contours, -1, (0, 255, 0), 3)
cv2.imshow('Contours', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
以上代码首先读取一张图像,然后将其转换为灰度图像。接下来,通过阈值化操作获取图像中的轮廓。最后,使用cv2.drawContours()函数在原始图像上绘制所有的轮廓,并显示结果。
相关问题
Cv2.drawcontours
cv2.drawContours()是OpenCV库中的一个函数,用于在图像上绘制轮廓。它可以用于在图像上绘制检测到的对象的边界。
以下是一个使用cv2.drawContours()函数绘制轮廓的示例:
```python
import cv2
import numpy as np
# 读取图像
image = cv2.imread('image.jpg')
# 将图像转换为灰度图像
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# 对图像进行二值化处理
ret, thresh = cv2.threshold(gray, 127, 255, 0)
# 查找轮廓
contours, hierarchy = cv2.findContours(thresh, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
# 绘制轮廓
cv2.drawContours(image, contours, -1, (0, 255, 0), 3)
# 显示结果
cv2.imshow('Contours', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在这个例子中,我们首先读取一张图像,然后将其转换为灰度图像。接下来,我们对图像进行二值化处理,以便更好地检测轮廓。然后,我们使用cv2.findContours()函数查找图像中的轮廓。最后,我们使用cv2.drawContours()函数将轮廓绘制在原始图像上,并显示结果。
cv2.drawContours
`cv2.drawContours()` 是 OpenCV 中用于绘制轮廓的函数。它接受一张二值化的图像和轮廓信息作为输入,然后在原始图像上绘制轮廓。
函数的语法如下:
```python
cv2.drawContours(image, contours, contourIdx, color, thickness=None, lineType=None, hierarchy=None, maxLevel=None, offset=None)
```
参数说明:
- `image`:原始图像。
- `contours`:轮廓信息。可以使用 `cv2.findContours()` 函数获取。
- `contourIdx`:指定要绘制的轮廓索引。如果为负数,则绘制所有轮廓。
- `color`:绘制轮廓的颜色。
- `thickness`:绘制轮廓的线条粗细。如果为负数,则绘制填充轮廓。
- `lineType`:线条类型。默认为 `cv2.LINE_8`。
- `hierarchy`:轮廓的层级结构。
- `maxLevel`:绘制的轮廓的最大深度。如果为 0,则只绘制输入轮廓。
- `offset`:绘制轮廓的偏移量。
例如,以下代码绘制了一张图像中的所有轮廓:
```python
import cv2
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()` 函数用于绘制轮廓。最后显示绘制后的图像。
阅读全文