python 找到最大轮廓的内矩形
时间: 2023-07-05 20:28:22 浏览: 82
要找到最大轮廓的内矩形,可以使用 OpenCV 库中的 `cv2.boundingRect()` 函数。以下是一个示例代码:
```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_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# 找到最大轮廓
max_contour = max(contours, key=cv2.contourArea)
# 找到最大轮廓的内矩形
x, y, w, h = cv2.boundingRect(max_contour)
# 绘制矩形
cv2.rectangle(img, (x, y), (x + w, y + h), (0, 0, 255), 2)
# 显示图像
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
在这个示例代码中,首先读取图像并将其转换为灰度图像,然后进行二值化处理并查找轮廓。然后使用 `max()` 函数找到最大轮廓,并使用 `cv2.boundingRect()` 函数找到最大轮廓的内矩形。最后使用 `cv2.rectangle()` 函数将矩形绘制在原图像上。
阅读全文