图像直边外接矩形 python
时间: 2023-07-30 07:13:15 浏览: 101
可以使用OpenCV库来实现图像直边外接矩形的功能。以下是一个简单的示例代码:
```python
import cv2
# 读取图像
img = cv2.imread('image.jpg')
# 转换为灰度图像
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 边缘检测
edges = cv2.Canny(gray, 50, 150)
# 查找轮廓
contours, hierarchy = cv2.findContours(edges, 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, 255, 0), 2)
# 显示结果
cv2.imshow('image', img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
这段代码会读取名为“image.jpg”的图像,然后进行灰度化和边缘检测。接着查找图像中的轮廓,获取最大轮廓,并计算出最大轮廓的直边外接矩形。最后在原图上绘制矩形并显示结果。
相关问题
透明图像直边外接矩形提取代码
以下是Python中使用OpenCV库实现透明图像直边外接矩形提取的代码:
```python
import cv2
# 读取图像
img = cv2.imread("transparent_image.png", cv2.IMREAD_UNCHANGED)
# 提取 alpha 通道
alpha = img[:, :, 3]
# 找到 alpha 通道不为 0 的像素点的坐标
points = cv2.findNonZero(alpha)
# 计算外接矩形
rect = cv2.boundingRect(points)
# 在图像上绘制矩形
cv2.rectangle(img, (rect[0], rect[1]), (rect[0]+rect[2], rect[1]+rect[3]), (0, 0, 255), 2)
# 显示图像
cv2.imshow("image", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
其中,`cv2.imread`函数用于读取图像,`cv2.IMREAD_UNCHANGED`表示读取包含 alpha 通道的图像。`cv2.findNonZero`函数用于找到 alpha 通道不为 0 的像素点的坐标,`cv2.boundingRect`函数用于计算外接矩形。最后,使用`cv2.rectangle`函数在图像上绘制矩形,并使用`cv2.imshow`函数显示图像。
透明图像直边外接矩形提取并裁剪保存代码
以下是Python中使用OpenCV库实现透明图像直边外接矩形提取并裁剪保存的代码:
```python
import cv2
# 读取图像
img = cv2.imread("transparent_image.png", cv2.IMREAD_UNCHANGED)
# 提取 alpha 通道
alpha = img[:, :, 3]
# 找到 alpha 通道不为 0 的像素点的坐标
points = cv2.findNonZero(alpha)
# 计算外接矩形
rect = cv2.boundingRect(points)
# 裁剪图像
crop_img = img[rect[1]:rect[1]+rect[3], rect[0]:rect[0]+rect[2]]
# 保存裁剪后的图像
cv2.imwrite("crop_image.png", crop_img)
# 在原图像上绘制矩形
cv2.rectangle(img, (rect[0], rect[1]), (rect[0]+rect[2], rect[1]+rect[3]), (0, 0, 255), 2)
# 保存带有矩形的图像
cv2.imwrite("rect_image.png", img)
# 显示图像
cv2.imshow("image", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
其中,`crop_img = img[rect[1]:rect[1]+rect[3], rect[0]:rect[0]+rect[2]]`用于裁剪图像,`cv2.imwrite`函数用于保存裁剪后的图像和带有矩形的图像。完整代码实现了同时保存裁剪后的图像和包含矩形的原图像。
阅读全文