opencv最小外接矩形python代码
时间: 2023-09-23 11:06:57 浏览: 138
python opencv minAreaRect 生成最小外接矩形的方法
下面是使用 OpenCV 在 Python 中计算最小外接矩形的代码示例:
```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)
# 寻找最大的轮廓
cnt = max(contours, key=cv2.contourArea)
# 计算最小外接矩形
rect = cv2.minAreaRect(cnt)
box = cv2.boxPoints(rect)
box = np.int0(box)
# 绘制最小外接矩形
cv2.drawContours(img, [box], 0, (0, 0, 255), 2)
# 显示结果
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在上面的代码中,我们首先读取一张图像并进行灰度化和二值化处理,然后使用 `cv2.findContours()` 函数查找轮廓。接着,我们使用 `max()` 函数找到最大的轮廓,并使用 `cv2.minAreaRect()` 函数计算最小外接矩形。最后,我们使用 `cv2.drawContours()` 函数绘制最小外接矩形,并显示结果。
阅读全文