๐ฎ๐ท Persian License Plate Detector - YOLOv5 (yolo12x
)
This model (yolo12x
) is trained to detect Iranian vehicle license plates in images. It uses the YOLOv5 architecture and is optimized for real-world Persian plates under various conditions.
๐ง Model Details
- Architecture: YOLOv5
- Training Data: 30,000+ images of Iranian cars with annotated license plates
- Classes: 1 (
license_plate
) - File:
best.pt
๐ฆ Files in This Repository
best.pt
โ YOLOv5 model weights (PyTorch format)app.py
โ Gradio app to test the model in-browserPersian_License_Plate_Images/
โ Example images for demonstration (upload some!)README.md
โ This model card
๐ผ๏ธ Example
from ultralytics import YOLO
model = YOLO("best.pt")
results = model("car.jpg")
results[0].show()
- Downloads last month
- 48