在Python中,使用OpenCV可以通过轮廓检测来找到物体的轮廓,并在其周围绘制外接正矩形。以下是一个简单的例子:
import cv2
import numpy as np
# 读取图像
image = cv2.imread('your_image.jpg')
# 将图像转换为灰度
gray = cv2.cvtColor(image, cv2.COLOR_BGR2GRAY)
# 进行边缘检测
edges = cv2.Canny(gray, 50, 150)
# 寻找轮廓
contours, _ = cv2.findContours(edges, cv2.RETR_EXTERNAL, cv2.CHAIN_APPROX_SIMPLE)
# 循环遍历所有轮廓
for contour in contours:
# 获取外接正矩形坐标
x, y, w, h = cv2.boundingRect(contour)
# 在原图上绘制外接正矩形
cv2.rectangle(image, (x, y), (x + w, y + h), (0, 255, 0), 2)
# 显示结果图像
cv2.imshow('Bounding Rectangles', image)
cv2.waitKey(0)
cv2.destroyAllWindows()