YOLOv8n object detection model fine-tuned to detect Ukrainian vehicle license plates in images.
This model is a YOLOv8n-based object detector trained for license plate detection. It was fine-tuned from the Ultralytics YOLOv8n pretrained checkpoint.
License plate detection in images and video frames.
Use with domain-specific validation. Do not assume cross-region generalization without testing.
1from ultralytics import YOLO
2
3model = YOLO("best.pt")
4results = model("image.jpg")
5
6for r in results:
7 print(r.boxes)