CoolFace
Modelpublic

makhresearch/persian-license-plate-detector

sourceHugging Facemitupdated 1y agoView on Hugging Face
4likes428downloads
Model Card

๐Ÿ‡ฎ๐Ÿ‡ท 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-browser
  • โ€”Persian_License_Plate_Images/ โ€“ Example images for demonstration (upload some!)
  • โ€”README.md โ€“ This model card

๐Ÿ–ผ๏ธ Example

python
from ultralytics import YOLO
model = YOLO("best.pt")
results = model("car.jpg")
results[0].show()