A Python library for license plate detection and recognition
Project description
PlateRecognizePy
PlateRecognizePy is a Python library for license plate detection and recognition, with special support for Indian number plates. It provides a simple interface to process images containing license plates and extract the plate text.
Features
- License plate detection in images using YOLOv8 (with OpenCV as fallback)
- Text recognition from license plates
- Support for both Tesseract OCR and EasyOCR
- Configurable output saving and directory
- Logging of detection and recognition results
- Specialized support for Indian number plates:
- Recognition of both white and yellow plates
- Handling of various Indian state codes
- Support for both new and old format Indian plates
Installation
You can install PlateRecognizePy using pip:
pip install PlateRecognizePy
Requirements
PlateRecognizePy requires Python 3.7 or later. The main dependencies are:
For a complete list of dependencies, please refer to the setup.py
file.
Usage
Here's a simple example of how to use PlateRecognizePy:
from plate_recognize_py import process_license_plate
import cv2
# Load an image
image = cv2.imread('path/to/your/image.jpg')
# Process the image
config = {
'save_output': True,
'output_dir': 'custom_output'
}
license_plate, text = process_license_plate(image, config)
print(f"Detected license plate: {text}")
The process_license_plate
function now accepts an optional config
dictionary with the following options:
save_output
: Boolean to control whether to save the output images (default: True)output_dir
: String specifying the directory to save output images (default: 'output')
For more detailed examples and the full source code, you can check out the License plate recognition Python.
Indian Number Plate Recognition
PlateRecognizePy is optimized for Indian number plates:
from plate_recognize_py import process_indian_license_plate
import cv2
# Load an image with an Indian number plate
image = cv2.imread('path/to/indian_plate_image.jpg')
# Process the image
license_plate, text, state = process_indian_license_plate(image)
print(f"Detected license plate: {text}")
print(f"State: {state}")
This function works for both white and yellow Indian number plates, automatically detecting the plate color and adjusting the recognition process accordingly.
Indian Number Plate Formats
PlateRecognizePy supports various Indian number plate formats:
-
New Format: AA 00 AA 0000 Example: DL 01 CA 1234
-
Old Format: AA AA 0000 Example: MH 12 3456
-
Commercial Vehicle Format: AA 00 A 0000 Example: HR 55 C 7890
The library automatically detects the format and processes it accordingly.
Supported Indian State Codes
PlateRecognizePy recognizes all Indian state codes, including but not limited to:
- DL: Delhi
- MH: Maharashtra
- KA: Karnataka
- TN: Tamil Nadu
- UP: Uttar Pradesh
Contributing
Contributions to PlateRecognizePy are welcome! Please feel free to submit a Pull Request.
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- OpenCV for image processing capabilities
- Tesseract and EasyOCR for text recognition
- YOLOv8 for object detection
PlateRecognizePy is developed by VJ. For any questions or support, please open an issue on the GitHub repository or reach out on X (Twitter) @saidbyvj.
Performance and Accuracy
PlateRecognizePy has been tested on a wide range of Indian number plates, including:
- High-resolution images
- Low-light conditions
- Angled or skewed plates
- Partially obscured plates
In optimal conditions, the library achieves an accuracy rate of over 95% for Indian plates.
Limitations
While PlateRecognizePy performs well in most scenarios, users should be aware of some limitations:
- Extremely blurry or low-resolution images may yield inaccurate results
- Severely damaged or heavily customized plates might not be recognized correctly
- The library may struggle with non-standard fonts or highly stylized plates
Future Improvements
We are continuously working to improve PlateRecognizePy, with planned enhancements including:
- Support for more international license plate formats
- Integration with more advanced OCR technologies
- Performance optimizations for faster processing
Project details
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 platerecognizepy-0.2.2.tar.gz
.
File metadata
- Download URL: platerecognizepy-0.2.2.tar.gz
- Upload date:
- Size: 5.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80d2bd612ede8b5123bcf8fa2c5df1f9805feca1cb0619b8c4a6b665de79d289 |
|
MD5 | 200ec0bd505a8c2b19144938dde3747e |
|
BLAKE2b-256 | b1b6c70cb301ccca87e17deed7678ddea00867bbaf69b7b6356212d20c7650ef |
File details
Details for the file PlateRecognizePy-0.2.2-py3-none-any.whl
.
File metadata
- Download URL: PlateRecognizePy-0.2.2-py3-none-any.whl
- Upload date:
- Size: 5.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5872a29a3d5e00a1d84bb26d832e760d01fac7207d48e5acc546dcebb70c5222 |
|
MD5 | 67c3560ce747f599f8cd8c91714f15fb |
|
BLAKE2b-256 | aaa3463de0b2bee2914f1a7f8e39d2158bc2845c58cd649ace8b5b3e9bede580 |