python contour
时间: 2023-11-09 10:59:41 浏览: 211
pytour:用于创建高维数据动画投影的python包
Contour(轮廓)是指图像中具有相同颜色或强度的连续点的曲线。在Python中,可以使用OpenCV库的findContours函数来查找图像中的轮廓。
以下是一个使用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, 255, 0), 3)
# 显示结果
cv2.imshow('Contours', image)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
阅读全文