opencv用python写一个画轮廓外接矩形的代码
时间: 2024-03-16 20:42:59 浏览: 164
好的,以下是Python中使用OpenCV库画轮廓外接矩形的代码示例:
```python
import cv2
# 读取图片
img = cv2.imread('test.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)
# 画出轮廓和外接矩形
for contour in contours:
x, y, w, h = cv2.boundingRect(contour)
cv2.rectangle(img, (x, y), (x+w, y+h), (0, 255, 0), 2)
cv2.drawContours(img, [contour], 0, (0, 0, 255), 3)
# 显示结果
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
其中,`cv2.findContours()`函数用于寻找轮廓,`cv2.boundingRect()`函数用于计算轮廓的外接矩形,`cv2.rectangle()`函数用于画出矩形,`cv2.drawContours()`函数用于画出轮廓。
阅读全文