anpr / README.md
itsyoboieltr
fix: minor changes
6519fca
metadata
title: Automatic Number-Plate Recognition
emoji: 🚘
colorFrom: red
colorTo: gray
sdk: gradio
app_file: app.py
pinned: false

Automatic Number Plate Recognition

AI to detect and recognize number plates on vehicles.

Table of contents

Live demo

General information

This is an AI that was trained on images of number plates to carry out number plate detection and recognition. It works for both images and videos. Video detection also includes object tracking.

Dataset

For this project, I created the ANPR dataset, a dataset of approx. 30k handpicked images of number plates.

Annotations are in YOLO format.

How does it work

Technologies used:

  • YOLOv8: Object detection model to detect the number plate
  • PaddleOCR: OCR to read the number plate
  • Deep SORT: Object tracking algorithm for video detection

The YOLOv8 Model was fine-tuned using the ANPR dataset to detect number plates. When a number plate is detected, PaddleOCR is used to read the number plate. For video detection, Deep SORT is used to handle object tracking.