Automatic Number Plate Recognition System
Project description
ANPRS (Automatic Number Plate Recognition System)
This project served as the B.Tech project of four Electrical Engineering students in 2022.
Usage
- Install Package (Requires python 3.x)
pip install anprs
- Sample Usage
from anprs.anprs import LPR, OCR lpr = LPR() ocr = OCR() image_path = 'path/to/your/image' lpr_res = lpr.perform_lpr(image_path) license_plate_number = "" if lpr_res: license_plate_number = ocr.get_results() else: print('License plate not detected') print(lpr_res, license_plate_number)
Research Paper
The implementation in this repository corresponds to the following research paper:
Title: Deep Learning-based approach for Indian License Plate Recognition using Optical Character Recognition
Authors:
- Aditya Upadhye
- Atharvraj Patil
- Jayesh Ingale
- Sakshi Jaiswal
- Suhas Kakade
- Abhishek Bhatt
Link: https://ieeexplore.ieee.org/abstract/document/10183391
Build Project
- Setup Virtual Env
# create virtual env
python -m venv local_env
# use this to activate the environment
source local_env/Scripts/activate
# install dependencies
pip install -r requirements.txt
- Create Media Folder in root directory
- Add your image of a vehicle and rename it to photo.jpg
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
anprs-0.0.4.tar.gz
(7.3 kB
view details)
File details
Details for the file anprs-0.0.4.tar.gz
.
File metadata
- Download URL: anprs-0.0.4.tar.gz
- Upload date:
- Size: 7.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.0.0 CPython/3.9.18
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b642af1eae0781a78d714a240a33103b033eba70573aec2807d5de01a1038a72 |
|
MD5 | 386b9ff9f70b11b3b98ad66c8347a544 |
|
BLAKE2b-256 | 5e516975845593a2b52e3add9b9983b6ae98264d790aaaab4cad0311d8a62555 |