Views
No views yet
license_plate)best.ptpip install ultralytics1from ultralytics import YOLO
2
3# Load model from HF
4model = YOLO("koushik-ai/yolov8-license-plate-detection/best.pt")
5
6# Run inference
7results = model("your_image.jpg")
8
9# Show results
10results[0].show()