Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Tensorflow | 172,281 | 327 | 77 | 3 hours ago | 46 | October 23, 2019 | 2,295 | apache-2.0 | C++ | |
An Open Source Machine Learning Framework for Everyone | ||||||||||
Transformers | 86,611 | 64 | 911 | 3 hours ago | 91 | June 21, 2022 | 602 | apache-2.0 | Python | |
🤗 Transformers: State-of-the-art Machine Learning for Pytorch, TensorFlow, and JAX. | ||||||||||
Pytorch | 64,175 | 146 | 3 hours ago | 23 | August 10, 2022 | 11,410 | other | C++ | ||
Tensors and Dynamic neural networks in Python with strong GPU acceleration | ||||||||||
Keras | 57,659 | 330 | 3 hours ago | 68 | May 13, 2022 | 375 | apache-2.0 | Python | ||
Deep Learning for humans | ||||||||||
Cs Video Courses | 53,706 | a day ago | 14 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
Faceswap | 43,824 | 20 days ago | 15 | gpl-3.0 | Python | |||||
Deepfakes Software For All | ||||||||||
Tensorflow Examples | 42,312 | 5 months ago | 218 | other | Jupyter Notebook | |||||
TensorFlow Tutorial and Examples for Beginners (support TF v1 & v2) | ||||||||||
100 Days Of Ml Code | 40,344 | 8 days ago | 61 | mit | ||||||
100 Days of ML Coding | ||||||||||
D2l Zh | 39,953 | 1 | 8 days ago | 45 | March 25, 2022 | 22 | apache-2.0 | Python | ||
《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被60多个国家的400多所大学用于教学。 | ||||||||||
Deepfacelab | 37,877 | 9 days ago | 510 | gpl-3.0 | Python | |||||
DeepFaceLab is the leading software for creating deepfakes. |
Get high-accuracy, developer-friendly automatic license plate recognition (ALPR) or automatic number plate recognition (ANPR) software! The core of our ALPR, ANPR system is based on state of the art deep neural networks architectures.
Our machine-learning software:
Snapshot : Get license plate reader from images in under 60 minutes:
Stream : Get number plate recognition from camera or video feed:
ALPR, ANPR software is ideal for parking, highway monitoring, toll, police surveillance, community security, and other use cases. Our license plate recognition (LPR) software can also forward results to our full ALPR Dashboard and Parking Management software solution, ParkPow. Sign up for a Free Trial now (no credit card required) or learn more at https://platerecognizer.com.
Get your API key from Plate Recognizer. Replace MY_API_KEY with your API key and run the command below.
For setup instructions of the script, checkout our guides here
# Getting started!
git clone https://github.com/parkpow/deep-license-plate-recognition.git
cd deep-license-plate-recognition
pip install requests pillow
python plate_recognition.py --api-key MY_API_KEY /path/to/vehicle.jpg
The result includes the bounding box
es (rectangle around object) and the plate
value for each plate. View the details of the results on our documentation.
[
{
"version": 1,
"results": [
{
"box": {
"xmin": 85,
"ymin": 85,
"ymax": 211,
"xmax": 331
},
"plate": "ABC123",
"score": 0.904,
"dscore": 0.92
}
],
"filename": "car.jpg"
}
]
You can match the license plate patterns of a specific region.
python plate_recognition.py --api-key MY_API_KEY --regions fr --regions it /path/to/car.jpg
You can also run the license plate reader on many files at once. To run the script on all the images of a directory, use:
python plate_recognition.py --api-key MY_API_KEY /path/to/car1.jpg /path/to/car2.jpg /path/to/trucks*.jpg
To use a locally hosted sdk, pass the url to the docker container as follows:
python plate_recognition.py --sdk-url http://localhost:8080 /path/to/vehicle.jpg
The script number_plate_redaction.py
differs from the default prediction script because it also detects plates that are barely readable and/or very small. It returns the bounding boxes of all the license plates. They can be used to blur or mask the license plates.
In addition, it can split the image in smaller images to better deal with high resolution images. This will use 3 lookups instead of just 1. To use this options add --split-image
.
The option --save-blurred
lets you save blurred images. They are saved to a new file with _blurred
suffix.
The option --ignore-regexp
lets you specify a regex of plates to ignore from blur. This option can be specified multiple times.
The option --ignore-no-bb
lets you ignore recognitions without a vehicle bounding box from blur.
python number_plate_redaction.py --help
python number_plate_redaction.py --api-key API_KEY vehicels.jpg
python number_plate_redaction.py --sdk-url http://localhost:8080 --split-image vehicels.jpg
python number_plate_redaction.py --api-key 77c### 58C5A57_14965463.jpg --save-blurred --ignore-regexp ^58c5a57$ --ignore-regexp ^[0-9][0-9]c5a57$
You can send images directly to our FTP. See our FTP integration for details.
If you want to use your own FTP, another option is to process images with ftp_processor
:
For setup instructions of the script, checkout our guides here
python ftp_processor.py --api-key MY_API_KEY --ftp-host hostname --ftp-user user --ftp-password password --folder /path/to/server_folder
To remove images from FTP server after processing, add the argument --delete
.
Automatic Image Transfer is a command line tool that runs our ALPR Engine. It monitors a folder and automatically process images (Cloud or SDK) as they are added. Once processed, images are moved to an archive directory. It can also forward the results to our parking management service Parkpow.
To get started: python transfer.py --help
See our sample projects to easily get started with the API.
Have questions? Let us know how we can help.
Provided by Plate Recognizer, a subsidiary of ParkPow.