Add link to OpenALPR's wiki and add line break

This commit is contained in:
Fabian Affolter 2017-05-17 07:32:25 +02:00
parent 492c0a9cf4
commit 7b33501b30
No known key found for this signature in database
GPG Key ID: DDF3D6F44AAB1336

View File

@ -22,17 +22,20 @@ For using inside automation look on [component](/components/image_processing) pa
If you want process all data locally, you need version 2.3.1 or higher of the `alpr` commandline tool. If you want process all data locally, you need version 2.3.1 or higher of the `alpr` commandline tool.
If you don't find binaries for your distribution you can compile from source. Documention of how to build openalpr is found [here](https://github.com/openalpr/openalpr/wiki). If you don't find binaries for your distribution you can compile from source. Documention of how to build OpenALPR is found [here](https://github.com/openalpr/openalpr/wiki).
On a Debian system you can use this `cmake` command to build only the command line tool: On a Debian system you can use this `cmake` command to build only the command line tool:
```bash ```bash
$ cmake -DWITH_TEST=FALSE -DWITH_BINDING_JAVA=FALSE --DWITH_BINDING_PYTHON=FALSE --DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr .. $ cmake -DWITH_TEST=FALSE -DWITH_BINDING_JAVA=FALSE --DWITH_BINDING_PYTHON=FALSE \
--DWITH_BINDING_GO=FALSE -DWITH_DAEMON=FALSE -DCMAKE_INSTALL_PREFIX:PATH=/usr ..
``` ```
For other operating system please refer to the [OpenALPR wiki](https://github.com/openalpr/openalpr/wiki).
Verify your `alpr` installation with: Verify your `alpr` installation with:
``` ```bash
$ wget -O- -q http://plates.openalpr.com/h786poj.jpg | alpr - $ wget -O- -q http://plates.openalpr.com/h786poj.jpg | alpr -
``` ```