CoolFace
Modelpublic

moshabann/yolov5-alpr-egypt

sourceHugging Faceapache-2.0updated 23d agoView on Hugging Face
0likes
Model Card

๐Ÿš— Egyptian License Plate Detection (YOLOv5)

![PyPI](https://pypi.org/project/robovai-ocr/) ![Author](https://github.com/m0shaban) ![License](https://opensource.org/licenses/Apache-2.0)

๐Ÿ“Œ Model Overview

This YOLOv5 checkpoint has been fine-tuned on localized vehicle imagery for high-precision License Plate Detection (ALPR) across Egyptian roads, gates, and parking checkpoints.


โšก Quick Start with PyTorch Hub

python
import torch
from huggingface_hub import hf_hub_download

# 1. Download weights from Hugging Face Hub
model_path = hf_hub_download(repo_id="moshabann/yolov5-alpr-egypt", filename="detection_best.pt")

# 2. Load custom YOLOv5 model
model = torch.hub.load('ultralytics/yolov5', 'custom', path=model_path)

# 3. Perform inference
results = model('car_sample.jpg')

# 4. View results
results.print()
results.show()

๐Ÿš€ Complete OCR Pipeline

For complete alphanumeric text extraction and 14-digit National ID decoding:

bash
pip install robovai-ocr

๐Ÿ‘จโ€๐Ÿ’ป Maintainer