billiard/test.py

6 lines
194 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')
2023-09-26 12:07:44 +00:00
results = model.track(source="./videos/123.mp4", tracker='botsort.yaml', show=True)