Search results

  1. P

    New CodeProject.AI License Plate Recognition (YOLO11) Module

    Doesn't that say device 2?
  2. P

    New CodeProject.AI License Plate Recognition (YOLO11) Module

    If you are not getting any calls, try doing this: Go to your BI main settings, and go to the AI tab: Make sure your IP and port are correct. Then click on the AI Dashboard link to the right of that to confirm you can reach it. Next, click on the 3 dots next to the "Use custom models" and...
  3. P

    Flock installed LPR's without permits and has now been banned from operating in two states

    https://deflock.me/map#map=13/38.760174/-104.714642 In case you want to see where they are installed.
  4. P

    New CodeProject.AI License Plate Recognition (YOLO11) Module

    Mike, do you have an approx time frame for the Linux release? I'll be on a 11th gen Intel with iGPU only so I wont be able to provide any feedback for CUDA, etc.
  5. P

    New CodeProject.AI License Plate Recognition (YOLO11) Module

    While I wait for the Linux version, has anyone tried the new state and vehicle description features?
  6. P

    Full ALPR Database System for Blue Iris!

    You can expand any or all of your macros and save it to a text file on BI. To do this, go to your camera's On Alert tab and create a new action. Select write-to-file as the method. This should show what BI is sending to the ALPR database.
  7. P

    Full ALPR Database System for Blue Iris!

    Try this? https://ipcamtalk.com/threads/full-alpr-database-system-for-blue-iris.79082/post-919242
  8. 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
  9. P

    Full ALPR Database System for Blue Iris!

    Nice! Looking forward to checking it out.
  10. 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
  11. 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?
  12. 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?
  13. P

    Full ALPR Database System for Blue Iris!

    Here is the dump and the corresponding image. [{"api":"objects","found":{"message":"Found car, car...
  14. 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.
  15. P

    Full ALPR Database System for Blue Iris!

    Sure, how do I get the AI_dump data?
  16. 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...
  17. 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...
  18. P

    Full ALPR Database System for Blue Iris!

    Thanks, I'm the guy that posted that originally :)
  19. 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...
  20. 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
  21. 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!
  22. 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! :)
  23. 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...
  24. 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...
  25. 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.
  26. P

    Full ALPR Database System for Blue Iris!

    Man.. it's 2025 and this is still an issue? (former MCSE from the 90s).
  27. 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
  28. 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
  29. 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...
  30. P

    Full ALPR Database System for Blue Iris!

    Do you have an auth directory?