2017 © Pedro Peláez
 

library licenceplate

Licence plate recognition for Laravel 5

image

bkremenovic/licenceplate

Licence plate recognition for Laravel 5

  • Friday, February 17, 2017
  • by bkremenovic
  • Repository
  • 1 Watchers
  • 0 Stars
  • 26 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 1 Forks
  • 0 Open issues
  • 1 Versions
  • 8 % Grown

The README.md

Installation

Install dependencies:

sudo apt-get update && sudo apt-get install -y openalpr openalpr-daemon openalpr-utils libopenalpr-dev tesseract-ocr

Include a package into your project using composer:

composer require bkremenovic/licenceplate dev-master

Open your config/app.php and add the following to the providers array:

Bkremenovic\Licenceplate\LicenceplateServiceProvider::class,

In the same config/app.php and add the following to the aliases array:

'Licenceplate' => Bkremenovic\Licenceplate\Facades\Licenceplate::class,

Run the command below to publish the package config file config/licenceplate.php:

php artisan vendor:publish --provider="Bkremenovic\Licenceplate\LicenceplateServiceProvider"

Usage

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., (*1)

Example:

Licenceplate::recognize("licence.jpg")

or, (*2)

Licenceplate::recognize("http://example.com/licence.jpg")

The Versions

17/02 2017

dev-master

9999999-dev

Licence plate recognition for Laravel 5

  Sources   Download

MIT

The Requires

 

by Avatar bkremenovic

laravel recognition plate licenceplate licence