A very simple server to make possible to use the license plate recognition API of alpr by web requests (REST)
- run the server with
DEBUG=1 ./manage.py runserver localhost:8000
- get some image
wget http://i.ytimg.com/vi/gN2jtN9nvvk/maxresdefault.jpg
- upload the file. Example:
curl -X POST -F "file=@maxresdefault.jpg" localhost:8000/api/v1/lprs/
- clone the source to your server
- run
docker-compose up --build -d