python轮廓检测
时间: 2023-08-25 19:13:07 浏览: 97
轮廓检测代码
OpenCV 是一个开源的计算机视觉库,支持多种语言,包括 Python。
在 Python 中使用 OpenCV 可以实现矩形轮廓检测,下面是示例代码:
```
import cv2
# 读取图像
img = cv2.imread("image.jpg")
# 灰度化
gray = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
# 阈值化
ret, threshold = cv2.threshold(gray, 127, 255, 0)
# 检测轮廓
contours, hierarchy = cv2.findContours(threshold, cv2.RETR_TREE, cv2.CHAIN_APPROX_SIMPLE)
# 绘制矩形轮廓
for contour in contours:
x, y, w, h = cv2.boundingRect(contour)
cv2.rectangle(img, (x, y), (x+w, y+h), (0, 255, 0), 2)
# 显示结果
cv2.imshow("Result", img)
cv2.waitKey(0)
cv2.destroyAllWindows()
```
阅读全文