代码拉取完成,页面将自动刷新
import time
import cv2
from ultralytics import YOLO
if __name__ == "__main__":
video_path1 = "kingGlory.mp4"
cap1 = cv2.VideoCapture(video_path1)
model = YOLO("runs/detect/train/weights/best.pt")
while True:
t1 = time.time()
ret1, frame_start = cap1.read()
if not ret1:
break
results = model.predict(source=frame_start)[0]
plot_img = results.plot()
cv2.imshow('image', plot_img)
cv2.waitKey(1)
cv2.destroyAllWindows()
cap1.release()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。