Automatic numberplate recognition system
Project description
Nomeroff Net. Automatic numberplate recognition system. Version 3.1
Now there is a war going on in my country, Russian soldiers are shooting at civilians in Ukraine. Enemy aviation launches rockets and drops bombs on residential quarters. For 2 weeks we have been appealing to USA & Nato: "Please close the sky", but so far these calls remain unanswered...
Introduction
Nomeroff Net is an opensource python license plate recognition framework based on YOLOv5 and CRAFT networks and customized OCR-module powered by RNN architecture.
Write to us if you are interested in helping us in the formation of a dataset for your country.
Installation
Installation from Source (Linux)
Nomeroff Net requires Python >= 3.7
Clone Project
git clone https://github.com/ria-com/nomeroff-net.git
cd nomeroff-net
For Centos, Fedora and other RedHat-like OS:
# for Opencv
yum install libSM
# for pycocotools install
yum install python3-devel
# ensure that you have installed gcc compiler
yum install gcc
yum install git
# Before "yum install ..." download https://libjpeg-turbo.org/pmwiki/uploads/Downloads/libjpeg-turbo.repo to /etc/yum.repos.d/
yum install libjpeg-turbo-official
install requirements:
pip3 install -r requirements.txt
For Ubuntu and other Debian-like OS:
# ensure that you have installed gcc compiler
apt-get install gcc
# for opencv install
apt-get install -y libglib2.0
apt-get install -y libgl1-mesa-glx
# for pycocotools install (Check the name of the dev-package for your python3)
apt-get install python3.7-dev
# other packages
apt-get install -y git
apt-get install -y libturbojpeg
install requirements:
pip3 install -r requirements.txt
Hello Nomeroff Net
from nomeroff_net import pipeline
from nomeroff_net.tools import unzip
number_plate_detection_and_reading = pipeline("number_plate_detection_and_reading",
image_loader="opencv")
(images, images_bboxs,
images_points, images_zones, region_ids,
region_names, count_lines,
confidences, texts) = unzip(number_plate_detection_and_reading(['./data/examples/oneline_images/example1.jpeg',
'./data/examples/oneline_images/example2.jpeg']))
print(texts)
Hello Nomeroff Net for systems with a small GPU size.
Note: This example disables some important Nomeroff Net features. It will recognize numbers that are photographed in a horizontal position.
from nomeroff_net import pipeline
from nomeroff_net.tools import unzip
number_plate_detection_and_reading = pipeline("number_plate_short_detection_and_reading",
image_loader="opencv")
(images, images_bboxs,
zones, texts) = unzip(number_plate_detection_and_reading(['./data/examples/oneline_images/example1.jpeg',
'./data/examples/oneline_images/example2.jpeg']))
print(texts)
# (['AC4921CB'], ['RP70012', 'JJF509'])
Online Demo
In order to evaluate the quality of work of Nomeroff Net without spending time on setting up and installing, we made an online form in which you can upload your photo and get the recognition result online
AUTO.RIA Numberplate Dataset
All data on the basis of which the training was conducted is provided by RIA.com. In the following, we will call this data the AUTO.RIA Numberplate Dataset.
We will be grateful for your help in the formation and layout of the dataset with the image of the license plates of your country. For markup, we recommend using VGG Image Annotator (VIA)
Dataset Example:
AUTO.RIA Numberplate Options Dataset
The system uses several neural networks. One of them is the classifier of numbers at the post-processing stage. It uses dataset AUTO.RIA Numberplate Options Dataset.
The categorizer accurately (99%) determines the country and the type of license plate. Please note that now the classifier is configured mainly for the definition of Ukrainian numbers, for other countries it will be necessary to train the classifier with new data.
AUTO.RIA Numberplate OCR Datasets
As OCR, we use a specialized implementation of a neural network with RNN layers, for which we have created several datasets:
- AUTO.RIA Numberplate OCR UA Dataset (Ukrainian)
- AUTO.RIA Numberplate OCR UA Dataset (Ukrainian) with old design Dataset
- AUTO.RIA Numberplate OCR EU Dataset (European)
- AUTO.RIA Numberplate OCR RU Dataset (Russian)
- AUTO.RIA Numberplate OCR KZ Dataset (Kazakh)
- AUTO.RIA Numberplate OCR GE Dataset (Georgian)
- AUTO.RIA Numberplate OCR BY Dataset (Belarus)
- AUTO.RIA Numberplate OCR SU Dataset (exUSSR)
- AUTO.RIA Numberplate OCR KG Dataset (Kyrgyzstan)
- AUTO.RIA Numberplate OCR AM Dataset (Armenia)
If we did not manage to update the link on dataset you can find the latest version here
This gives you the opportunity to get 99% accuracyon photos that are uploaded to AUTO.RIA project
Contributing
Contributions to this repository are welcome. Examples of things you can contribute:
- Training on other datasets.
- Accuracy Improvements.
Credits
- Dmytro Probachay <dmytro.probachay@ria.com>
- Oleg Cherniy <oleg.cherniy@ria.com>
Links
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file nomeroff-net-3.1.1.tar.gz
.
File metadata
- Download URL: nomeroff-net-3.1.1.tar.gz
- Upload date:
- Size: 79.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | aa8377998f2e47966d4b4e9b1e71fb72c727ee82c985a13fc8e9245cd7254d7a |
|
MD5 | 1b70873541130ec48ae1513b1ddb64be |
|
BLAKE2b-256 | d74909ea2be88dc9d992ae41803d820d9c14e11be8650a1504fe5fc2d566d9ca |
File details
Details for the file nomeroff_net-3.1.1-py3-none-any.whl
.
File metadata
- Download URL: nomeroff_net-3.1.1-py3-none-any.whl
- Upload date:
- Size: 138.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.0 CPython/3.8.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 62dc9ea266b9183df6d901b52ce59498c5dd74e30f0801dad487e7a9cf35631c |
|
MD5 | b3ad6e72ae3eadbee9fa44a188634233 |
|
BLAKE2b-256 | 0e72639183adf2b537df7523537af0a4bfd086f7277b25073d2e7063abab33aa |