drawContours详解
时间: 2023-11-16 22:01:40 浏览: 89
drawContours是OpenCV中的一个函数,用于在图像上绘制轮廓。它的语法如下:
```C++
void drawContours(InputOutputArray image, InputArrayOfArrays contours, int contourIdx, const Scalar& color, int thickness = 1, int lineType = LINE_8, InputArray hierarchy = noArray(), int maxLevel = INT_MAX, Point offset = Point());
```
其中,参数含义如下:
- image:输入/输出图像,即要在其上绘制轮廓的图像。
- contours:输入的轮廓向量,每个轮廓由一系列点组成。
- contourIdx:要绘制的轮廓的索引,如果为负数,则绘制所有轮廓。
- color:绘制轮廓的颜色。
- thickness:轮廓线条的粗细程度,默认值为1。
- lineType:轮廓线条的类型,默认值为LINE_8。
- hierarchy:可选的轮廓层次结构,如果没有,则默认为空数组。
- maxLevel:绘制轮廓的最大层次,如果为INT_MAX,则绘制所有层次。
- offset:可选的偏移量,用于调整轮廓的位置。
在使用drawContours函数之前,需要先使用findContours函数来查找图像中的轮廓。具体使用方法可以参考引用中提供的代码。
相关问题
drawContours参数详解
drawContours是OpenCV中的一个函数,用于在图像上绘制轮廓。它的参数如下:
- image:输入/输出图像,即要在其上绘制轮廓的图像。
- contours:输入的轮廓向量,每个轮廓由一系列点组成。
- contourIdx:要绘制的轮廓的索引。如果为负数,则绘制所有轮廓。
- color:轮廓的颜色。
- thickness:轮廓线条的粗细。默认值为1。
- lineType:线条的类型。默认值为8。
- hierarchy:可选的轮廓层次结构,用于绘制轮廓的子轮廓。默认值为noArray()。
- maxLevel:要绘制的轮廓的最大层次。默认值为INT_MAX。
- offset:可选的偏移量,用于在图像上绘制轮廓。默认值为Point()。
其中,最常用的参数是image、contours、contourIdx和color。其他参数都有默认值,可以根据需要进行更改。
cv2.drawContours()详解
cv2.drawContours()是OpenCV中的一个函数,用于在图像上绘制轮廓。它接受以下参数:
- image:要在其上绘制轮廓的图像。
- contours:要绘制的轮廓。可以使用cv2.findContours()函数获得轮廓。
- contourIdx:要绘制的轮廓的索引。如果为负数,则绘制所有轮廓。
- color:轮廓的颜色。
- thickness:轮廓的线条粗细。如果为负数,则绘制轮廓的填充区域。
- lineType:线条类型。
- hierarchy:轮廓的层次结构。
以下是一个使用cv2.drawContours()函数绘制轮廓的例子[^1]:
```python
import cv2
import numpy as np
# 创建一个黑色背景的图像
image = np.zeros((400, 400), dtype=np.uint8)
# 创建轮廓
contours = np.array([[[50, 50]], [[200, 50]], [[200, 200]], [[50, 200]]])
# 绘制轮廓
cv2.drawContours(image, [contours], -1, (255, 255, 255), 2)
# 显示图像
cv2.imshow("Contours", image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
运行以上代码,会在一个黑色背景的图像上绘制一个矩形轮廓。
阅读全文