用opencv对最大外轮廓作最小外接矩形python
时间: 2024-02-17 15:32:37 浏览: 128
python opencv minAreaRect 生成最小外接矩形的方法
以下是一个使用OpenCV在Python中找到最大外轮廓并将其拟合成最小外接矩形的示例代码:
```python
import cv2
# 读取图像
img = cv2.imread('image.png')
# 将图像转为灰度图像
gray = cv2.cvtColor(img, 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)
# 找到最大的轮廓
max_contour = max(contours, key=cv2.contourArea)
# 将最大轮廓拟合成最小外接矩形
rect = cv2.minAreaRect(max_contour)
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()`函数将最大轮廓拟合成最小外接矩形,并在图像上绘制该矩形。
阅读全文