4 lines
121 B
Python
4 lines
121 B
Python
from ultralytics import YOLO
|
|
model = YOLO("yolov8n.pt")
|
|
results = model.predict("../res/test.mp4", show=True, save=True)
|