Skip to content

GuiltyNeuron/ANPR

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

28 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Automatic License Plate Detection & Recognition using deep learning

Licence Documentation Dataset Fork 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, Fast 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

To detect from an image

python detector.py --image test.jpg

To detect from a video

python detector.py --video test.mp4

Examples :

Detection from image : Licence_plate_detection_from_image