Search results

  1. P

    Full ALPR Database System for Blue Iris!

    Try this? https://ipcamtalk.com/threads/full-alpr-database-system-for-blue-iris.79082/post-919242
  2. P

    New CodeProject.AI License Plate Recognition (YOLO11) Module

    Mike, any plans on releasing a Linux version? RK support is probably not in the cards? Thanks
  3. P

    Full ALPR Database System for Blue Iris!

    Nice! Looking forward to checking it out.
  4. P

    Full ALPR Database System for Blue Iris!

    The last seen date is normal if the value has never been populated, it uses the unix epoch time of 0. https://en.wikipedia.org/wiki/Unix_time
  5. P

    Full ALPR Database System for Blue Iris!

    https://en.wikipedia.org/wiki/List_of_tz_database_time_zones The TZ you are using matches from the wiki? You are not referring the the "last seen date", right?
  6. P

    Full ALPR Database System for Blue Iris!

    In your docker compose file, did you set the TZ for both the environment as well as the database?
  7. P

    Full ALPR Database System for Blue Iris!

    Here is the dump and the corresponding image. [{"api":"objects","found":{"message":"Found car, car...
  8. P

    Full ALPR Database System for Blue Iris!

    It won't expand &AI_dump, it just literally prints that text, whereas &CAM will expand it to the camera name. I didn't go back to older versions of BI nor ALPRdatabase, this is with 0.19 and 5.9.9.73.
  9. P

    Full ALPR Database System for Blue Iris!

    Sure, how do I get the AI_dump data?
  10. P

    PTZ IR Mode On Manual Focus Doesn't Remember Focus Point

    I had the same issue, but with a different camera that also does not have focus presets, but does have a http call you can make to force the camera to focus in either direction. To make this work for me, I have a script that runs ever few hours during the day time to go to a preset, which...
  11. P

    Full ALPR Database System for Blue Iris!

    Okay, I've found the issue and adding it here in case someone runs into this in the future. On this system, I was still running the older 0.18 code and when I upgraded to 0.19, it fixed the problem partially. It seems in newer versions of BI (certainly in 5.9.9.73, but NOT in 5.9.9.33), the...
  12. P

    Full ALPR Database System for Blue Iris!

    Thanks, I'm the guy that posted that originally :)
  13. P

    Full ALPR Database System for Blue Iris!

    Anyone running Blue Iris 5.9.9.73 (8/28/2025)? My BI system crashed and when it rebooted, it updated to 5.9.9.73, and suddenly I am no longer getting any saved plates in ALPR Dashboard. And I started to see this in the log: 10/4/2025, 8:43:55 PM [INFO] Received plate read data: [object...
  14. P

    Blue Iris and CodeProject.AI ALPR

    My understanding is that this is a CPAI server issue--it is designed to use the older version of CUDA. The docs even tell you how to downgrade. https://codeproject.github.io/codeproject.ai/faq/gpu.html
  15. P

    Full ALPR Database System for Blue Iris!

    WOW! Can't wait to see this. The vehicle data (make, model, year, color) would be super helpful!
  16. P

    Full ALPR Database System for Blue Iris!

    Thanks Charlie, I wasn't aware that it needed to be that tight. This type of work seems like it'd be ideal for AI vision to do the cropping! :)
  17. P

    Full ALPR Database System for Blue Iris!

    I think the band-aid approach is still very valuable as a built-in feature to correct misreads. OCR will always give some inaccurate readings, especially when we are trying to do this in various weather and lighting conditions. And given the challenges with CPAI slow development, maybe there...
  18. P

    Blue Iris and CodeProject.AI ALPR

    The last few days, I've been playing with Llama3.2-vision and have been feeding it pictures of plates with mis-reads and also prompting it to describe the year, make, model, and color of the car, and the results were pretty remarkable. It's getting most of them right. It had a little...
  19. P

    Blue Iris and CodeProject.AI ALPR

    I don't use a GPU for my setup, but maybe you should run nvidia-smi and see what it shows? If your GPU is properly detected, it should show the driver and cuda version at the top.
  20. P

    Full ALPR Database System for Blue Iris!

    Man.. it's 2025 and this is still an issue? (former MCSE from the 90s).
  21. P

    Full ALPR Database System for Blue Iris!

    You might be having the same issue as this user. https://ipcamtalk.com/threads/full-alpr-database-system-for-blue-iris.79082/post-925036
  22. P

    Full ALPR Database System for Blue Iris!

    I am not sure how Windows does it, but in your docker compose file, you need to have the restart line: services: app: restart: unless-stopped
  23. P

    Full ALPR Database System for Blue Iris!

    Take a look at your docker compose file, you should have lines in there that look like this: volumes: - app-auth:/app/auth - app-config:/app/config - app-plate_images:/app/storage volumes: db-data: app-auth: driver: local driver_opts: type: none o...
  24. P

    Full ALPR Database System for Blue Iris!

    Do you have an auth directory?
  25. P

    New Uniview Owl Wise color IP camera vs IR camera

    I'd like to see some motion video, too.
  26. P

    Full ALPR Database System for Blue Iris!

    I always match my retention period to my mortgage. :)
  27. P

    Full ALPR Database System for Blue Iris!

    Mine was 100000, and I just changed it to 200000, the retention period has always been 360 months. From the logs, it looks like it was doing some JPEG prune (not sure if that is just the actual file prune, or if it also prunes the entry in the DB). This was the reason I just bumped the max...
  28. P

    Full ALPR Database System for Blue Iris!

    Does anyone have more than 17K unique plate in their database? I have noticed that my counter goes up to around 16K, then resets down to around 15K. I just noticed this over the last few weeks. My DB is around 31MB, with around 35GB of plate images. It does look like it is missing from...
  29. P

    Full ALPR Database System for Blue Iris!

    After using this for a while, I think the critical thing missing is auto correction based on "also known as" plates. I am only having approx 50-60% correct read rates right now, and the misreads are usually very similar. For my situation, 90% of the reads are of vehicles I have seen before, so...
  30. P

    Full ALPR Database System for Blue Iris!

    Have you considered using NodeRed to handle the automation? For example, have NR trigger on the MQTT topic and then filter out the driveway reads to do whatever post processing, including triggering one of your overview cameras to take a snapshot? I think core functionality should remain in...