billiard/test.py

6 lines
189 B
Python
Raw Normal View History

2023-08-06 05:43:37 +00:00
from ultralytics import YOLO
# Configure the tracking parameters and run the tracker
model = YOLO('best.pt')
results = model.track(source="./videos/123.mp4", conf=0.3, iou=0.5, show=True)