Recent content by PeteJ

  1. P

    Full ALPR Database System for Blue Iris!

    Deleting a plate from the web interface shouldn't have broken anything. Sounds like a clean install might be a good idea to get a fresh start. Come back and let us know how it goes.
  2. P

    Full ALPR Database System for Blue Iris!

    Anything in the logs on ALPR? bottom left icon on the nav bar.
  3. P

    Full ALPR Database System for Blue Iris!

    try: docker ps -a this will list the container IDs, look for the one with the alpr1-db then docker exec -it CONTAINER_ID_FROM_PREVIOUS /bin/bash that puts you into the shell of the container then you can execute the psql commands and verify the migrations.sql file exists and is where you...
  4. P

    What can I change to improve ability to identify teenage delinquents

    Before you spend the $, check with BPD to see if they care enough to watch your videos when it's just gun shots and not a murder. If your PD is anything like my PD, they'd just close the case and move on.
  5. P

    Full ALPR Database System for Blue Iris!

    Okay, looks like it is running but not sure why you have 5433 to 5432 port mapped. I run a few different instances of ALPR and by default, none of them do this. I'm on Linux, so maybe this is normal for Windows.
  6. P

    Full ALPR Database System for Blue Iris!

    you shouldnt change it, but that confirms the IP belongs to the internal network for docker. Is your postgres database running? docker ps
  7. P

    Full ALPR Database System for Blue Iris!

    docker network ls to see what your container is called
  8. P

    Full ALPR Database System for Blue Iris!

    docker network inspect alprdash_default might give you some insight on the internal network of docker. The last line in your log says it cannot connect to the database port.
  9. P

    Full ALPR Database System for Blue Iris!

    Your DB port is wrong. should be 5432, not 5433 (unless you did that intentionally)
  10. P

    Full ALPR Database System for Blue Iris!

    This one on top looks correct. What version of BI are you running? Are you getting correct plate reads in BI?
  11. P

    OCR models are not ready for this

    Dude has been rolling around with this plate for MONTHs. Cops be like :idk:
  12. P

    Full ALPR Database System for Blue Iris!

    Got the right API key? And right payload on alert?
  13. P

    Full ALPR Database System for Blue Iris!

    Personally, I'd love to see more features related to LPR than have agentic features to slurp out video snips or use it for super intelligent automation. Here is why: Limited by video quality. Our video sources are probably great in day time, but at night, it's usually a big compromise...
  14. P

    Running CPAI on OrangePi/RK3588--RKNN modules are "not available"

    I used some 25x25x7mm pure copper heat sinks from Amazon, and a Anvision 40x40x10mm DC 12v fan, wired it up to the 5v pins on the board. And I 3d printed the case: Orange Pi 5 Max Case with Fan and Antenna by Deez | Download free STL model | Printables.com
  15. P

    Running CPAI on OrangePi/RK3588--RKNN modules are "not available"

    this is my docker compose file: services: CodeProjectAI: image: codeproject/ai-server:arm64 container_name: codeproject-ai-server-arm64 privileged: True hostname: codeproject-ai-server restart: unless-stopped ports: - "5000:32168" environment: -...