可以使用 cv2.drawContours 函数将轮廓绘制到原始图像上
时间: 2023-06-16 10:06:31 浏览: 172
图像轮廓绘制
是的,可以使用cv2.drawContours函数将轮廓绘制到原始图像上。具体代码如下:
```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), 2)
# 显示绘制后的图像
cv2.imshow('Contours', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
其中,cv2.drawContours函数有以下参数:
- img:原始图像
- contours:轮廓
- contourIdx:绘制哪个轮廓,如果为-1,则绘制所有轮廓
- color:轮廓颜色(BGR格式)
- thickness:轮廓线条宽度
运行代码后,会将绘制好轮廓的图像显示出来。
阅读全文