python-opencv 空心轮廓识别
时间: 2024-01-12 15:22:35 浏览: 127
Python-Opencv自定义训练器识别任意物体-Python代码类资源
5星 · 资源好评率100%
以下是使用Python和OpenCV进行空心轮廓识别的示例代码:
```python
import cv2
# 读取图像
image = cv2.imread('image.jpg')
# 将图像转换为灰度图像
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# 进行二值化处理
ret, thresh = cv2.threshold(gray, 127, 255, cv2.THRESH_BINARY)
# 查找轮廓
contours, hierarchy = cv2.findContours(thresh, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# 绘制空心轮廓
cv2.drawContours(image, contours, -1, (0, 0, 255), 2)
# 显示结果图像
cv2.imshow('Contours', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这段代码首先读取一张图像,然后将其转换为灰度图像,并进行二值化处理。接下来,使用`cv2.findContours()`函数查找图像中的轮廓。最后,使用`cv2.drawContours()`函数绘制空心轮廓,并显示结果图像。
阅读全文