如何使用cv2.findContours
时间: 2023-11-11 10:59:17 浏览: 84
python cv2截取不规则区域图片实例
cv2.findContours是OpenCV中用于查找图像轮廓的函数。它的语法如下:
```
contours, hierarchy = cv2.findContours(image, mode, method[, contours[, hierarchy[, offset]]])
```
其中,参数image是输入的二值图像,mode是轮廓检索模式,method是轮廓逼近方法。函数返回值包括轮廓列表和层次结构。
下面是一个简单的示例代码:
```
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函数查找轮廓,并将轮廓绘制在原图上。
阅读全文