| Package Data | |
|---|---|
| Maintainer Username: | bkremenovic |
| Maintainer Contact: | bkremenovic@croz.net (bkremenovic) |
| Package Create Date: | 2017-02-14 |
| Package Last Update: | 2017-02-17 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-11-05 15:02:12 |
| Package Statistics | |
|---|---|
| Total Downloads: | 61 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 0 |
| Total Watchers: | 1 |
| Total Forks: | 1 |
| Total Open Issues: | 0 |
sudo apt-get update && sudo apt-get install -y openalpr openalpr-daemon openalpr-utils libopenalpr-dev tesseract-ocr
composer require bkremenovic/licenceplate dev-master
Bkremenovic\Licenceplate\LicenceplateServiceProvider::class,
'Licenceplate' => Bkremenovic\Licenceplate\Facades\Licenceplate::class,
php artisan vendor:publish --provider="Bkremenovic\Licenceplate\LicenceplateServiceProvider"
Use recognize() method using an image as a parameter (either remote or local).
If the licence plate has been successfully recognized, it will return a string containing your licence plate. Otherwise, it will return null.
Licenceplate::recognize("licence.jpg")
or
Licenceplate::recognize("http://example.com/licence.jpg")