Windows
Last updated
Was this helpful?
Last updated
Was this helpful?
The Windows Vehicle Recognition SDK package can be downloaded here:
Before getting started, ensure you have the latest versions of and installed.
Before running the software you must obtain a license key. If you haven't already done so, please visit the section to submit your information.
After acquiring a license, paste the license key into the license.conf file to begin using the software. Alternatively, you can set the license as an environment variable named OPENALPR_LICENSE_KEY
.
alpr.exe
is a command line application that can analyze license plates. Type alpr --help
from the Windows command prompt for more information.
The Vehicle Recognition SDK is written in C++ and has native support for integrating with C/C++ applications.
All of the DLLs in the root directory are required at runtime in order for the application to function. If you run in C#, Java, or Python, for example, the native DLLs must be accessible to the program so that it can load.
To include Vehicle Recognition SDK in your C/C++ application, include the alpr_c.h
file in the include directory. You must also link the libopenalpr.dll
shared library to your code.
Vehicle Recognition SDK also includes bindings for C#, Java, and Python. Each of these bindings fully implements the .
The C# library includes two example applications. The full source code is available at .