This service accepts license plate webhooks from the OpenALPR web server. The webhook data (license plate number, make/model, year) is then set as text on the configured IP camera video overlay. The plate is also saved to a database for later retrieval. Simple statistics about the plate are also calculated. The tool can also control day/night triggering as well as focus during scheduled sunrise/sunset times.
https://www.youtube.com/watch?v=GqafBPlDC7Q
command line
dotnet ./OpenAlprWebhookProcessor.dll
The container needs 1 port for incoming connections and a volume to mount the databses for plate/settings storage
docker cli
docker run -d \
--name=openalprwebhookprocessor \
--net=bridge \
-v /host/path/:/app/config/ \
-p 3859:80 \
mlapaglia/openalprwebhookprocessor
https://hub.docker.com/repository/docker/mlapaglia/openalprwebhookprocessor