Skip to main content

OpenALPR Python Bindings

Project description

Installation

  1. Make sure your computer has the commercial engine installed. This can be achieved by installing either the OpenALPR Agent or the Commercial SDK. This ensures that the C code bound to this Python package is available on your system.

  2. IMPORTANT: you cannot use this package without a product license. If you need an evaluation license, please request one here.

  3. Install this Python binding: pip install openalpr

Example

Download and image of a car with the license plate visible, save to your computer, and run the following code:

import json
from openalpr import Alpr

alpr = Alpr("us", "/path/to/openalpr.conf", "/path/to/runtime_data")
if not alpr.is_loaded():
    print("Error loading OpenALPR")
    sys.exit(1)
results = alpr.recognize_file("/path/to/image.jpg")
print(json.dumps(results, indent=4))
alpr.unload()

On Linux systems, the default paths for files required to instantiate the Alpr class are

  • /etc/openalpr/openalpr.conf
  • /usr/share/openalpr/runtime_data

And on Windows systems

  • C:\OpenALPR\Agent\etc\openalpr\openalpr.conf
  • C:\OpenALPR\Agent\usr\share\openalpr\runtime_data

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

openalpr-1.0.11.tar.gz (4.1 kB view hashes)

Uploaded Source

Built Distribution

openalpr-1.0.11-py3-none-any.whl (5.0 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page