Skip to content

tanlull/LPR-Detection-YoLo3

Repository files navigation

Automatic License Plate Detection & Recognition using deep learning

Licence Documentation Dataset Dataset cfg Stars

In this repos we study number plate detection and recognition using different deep learning models and computer vision approches.

Licence plate detection using Yolo :

In order to detect licence we will use Yolo ( You Only Look Once ) deep learning object detection architecture based on convolution neural networks. This architecture was introduced by Joseph Redmon , Ali Farhadi, Ross Girshick and Santosh Divvala first version in 2015 and later version 2 and 3.

Yolo v1 : Paper link.

Yolo v2 : Paper link.

Yolo v3 : Paper link.

Yolo is a single network trained end to end to perform a regression task predicting both object bounding box and object class. This network is extremely fast, it processes images in real-time at 45 frames per second. A smaller version of the network, tiny YOLO, processes an astounding 155 frames per second.

You will find more information about how to train Yolo on your customized dataset in this Link.

There is also other Deep learning object detector that you can use such as Single Shot Detector (SSD) and Faster RCNN.

How to use :

We used python v3.5.5 install requirement

pip install -r requirement.txt

Download Yolo weights from this Link.

Detect LP from an image

python detector.py --image test.jpg

To detect LP from a video

python detector.py --video test.mp4

Examples :

Detection from image : Licence_plate_detection_from_image

Licence plate recognition :

We are stadying Tunisian plates and USA plates for the recognition, check the sub folders in plates recognition folder!