yolov8实时获取视频预测结果

2023-12-20 04:28:26

阅读本文章前,默认读者已掌握yolov8的安装部署。
近日由于项目要求,需要获取yolov8识别的结果的标签和目标包围盒,经过研究后,可以通过以下代码获取。

python复制代码# Ultralytics YOLO 🚀, AGPL-3.0 license
import cv2
import numpy as np
from ultralytics import YOLO

# 初始化YOLOv8模型

mdl = 'D:/ultralytics-main/ultralytics/yolo/v8/detect/runs/detect/train2/weights/best.pt'
#设置自己训练好的模型路径
model = YOLO(mdl)
# 读取视频文件
cap = cv2.VideoCapture(0)
# 逐帧进行预测
while cap.isOpened():
    ret, frame = cap.read()
    if not ret:
        break
    
   # 对每一帧进行预测。并设置置信度阈值为0.8,需要其他参数,可直接在后面加
    results = model(frame,False,conf=0.8)
    conf = True
   # 绘制预测结果
    for result in results:
        # 绘制矩形框
        for box in result.boxes:
            xyxy = box.xyxy.squeeze().tolist()
            x1, y1, x2, y2 = int(xyxy[0]), int(xyxy[1]), int(xyxy[2]), int(xyxy[3])
            cv2.rectangle(frame, (x1, y1), (x2, y2), (0, 255, 0), 2)
            c, conf, id = int(box.cls), float(box.conf) if conf else None, None if box.id is None else int(box.id.item())
            name = ('' if id is None else f'id:{id} ') + result.names[c]
            label =name
            confidence =conf
            cv2.rectangle(frame, (x1, y1), (x2, y2), (0, 255, 0), 2)
            cv2.putText(frame, f"{label}: {confidence:.2f}", (x1, y1 - 10), cv2.FONT_HERSHEY_SIMPLEX, 0.5, (0, 255, 0), 2)
    #或者使用下行代码绘制所有结果
    #res=results[0].plot(conf=False)
   # 显示预测结果
    cv2.imshow("Predictions", frame)
    if cv2.waitKey(1) & 0xFF == ord("q"):
        break

# 释放资源并关闭窗口
cap.release()
cv2.destroyAllWindows()

文章来源:https://blog.csdn.net/xwb_12340/article/details/135085784
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。