Views
No views yet
1from ultralytics import YOLO 2 3# Load the model 4model = YOLO("neo1o1/yolo11-traffic-cams/best.pt") 5 6# Run inference 7results = model("path/to/image.jpg") 8results[0].show()