Frontal License Plate Recognition
License
NFFS-LPRF
Run
Docker compose config:
version: '3.3'
services:
demo:
image: "${LPR_SNAPSHOT_IMAGE}"
runtime: nvidia
pid: host
network_mode: host
command: [
--access-key, "${NODEFLUX_ACCESS_KEY}",
--secret-key, "${NODEFLUX_SECRET_KEY}",
--deployment-key, "${NODEFLUX_DEPLOYMENT_KEY}",
--listen-port, "4004",
--listen-port-monitoring, "5001",
--verbose,
]
Run image
export LPR_SNAPSHOT_IMAGE=registry.gitlab.com/nodefluxio/cloud/analytics/pipelines/license-plate-recognition-pipeline:on-premise-v0.1.0
export NODEFLUX_ACCESS_KEY=<nodeflux access key>
export NODEFLUX_SECRET_KEY=<nodeflux secret key>
exprot NODEFLUX_DEPLOYMENT_KEY=<nodeflux deployment key>
docker-compose up
Last updated
Was this helpful?