Recent content by algertc

  1. algertc

    Full ALPR Database System for Blue Iris!

    @iwanttosee that’s a good find. Thanks for sharing. If you add a known plate from your detections first, you should then see the button to add one without having seen it before. This is the original empty state from before it was possible to add them manually. I have time to work on it this week.
  2. algertc

    Full ALPR Database System for Blue Iris!

    Didn’t work on it this past weekend. Can be finished with one more solid focused day.
  3. algertc

    Full ALPR Database System for Blue Iris!

    Not sure what’s going on with this stuff. I don’t think it’s caused by anything here.
  4. algertc

    Full ALPR Database System for Blue Iris!

    Making good progress so far. Lot of stuff hardened, completely fresh new DB with query builder, new auth with multiple users and roles, tons of data fetching stuff fixed, and many other improvements. Agents requiring more supervision than I initially expected and I have a bunch of other tasks I...
  5. algertc

    Full ALPR Database System for Blue Iris!

    Once the foundational updates are complete, I can try to give some different AI models a spec and see if any of them come back with something workable. I'll send the spec when I get there so you can see how it goes about doing it.
  6. algertc

    Full ALPR Database System for Blue Iris!

    @VideoDad RE: complex automations/notification rules - to do this well and have it really be good is actually pretty complicated. Home Assistant has a pretty advanced rules engine from what I see. If you could have every recognition sent to an MQTT topic with all of the metadata that comes from...
  7. algertc

    Full ALPR Database System for Blue Iris!

    Would be greatly helpful if anyone is willing to send me a dump of their database (ideally a more than one person) so I can ensure this will migrate smoothy. I am going to upgrade the postgres to version 16. With this, there will be no more migrations.sql bullcrap and a proper ORM will be used...
  8. algertc

    Full ALPR Database System for Blue Iris!

    My plan is to more or less start completely from scratch and use Claude code to remake the whole app in parallel in a more principled way, while integrating all of the requested features. I’m pretty excited and hoping this can be done this weekend. I might also make a publicly accessible...
  9. algertc

    Full ALPR Database System for Blue Iris!

    What I mean by this is the http request that BI sends. You could see this by creating an alert notification in BI with the same content that we use for the ALPR database, but selecting email or something else instead of http request. Emailing it to yourself will show you what BI actually sends...
  10. algertc

    Full ALPR Database System for Blue Iris!

    I don’t even need the dat files. Just the images. A sample from BI would be great too. Could get this either by sending the same payload that is sent to this app in an email from BI or using the write to file option.
  11. algertc

    Full ALPR Database System for Blue Iris!

    The computer I use to host this has had some catastrophic failures. Is anyone able to send like 20-50 images that I can use for testing? It would also be helpful to have the request sent by BI in whatever new format in BI6 that has caused problems.
  12. algertc

    Full ALPR Database System for Blue Iris!

    I have indeed had a lot going on for the past few months. Checking on the thread, it seems like there’s been a lot of blue iris config related discussion and troubleshooting. Anything else that I’ve missed? Any specific items ^ that you’re thinking of @VideoDad ? I did also see the mention...
  13. algertc

    Full ALPR Database System for Blue Iris!

    @wpiman I will check the permissions. Can you please edit the crazy long post to put the paste in a codeblock? I still have a bunch of stuff I don't really want to deal with saving and closing on my desktop. I'll update my laptop and send the code over and see if I can submit the TvOS app now...
  14. algertc

    Full ALPR Database System for Blue Iris!

    If this is useful to u I can do it. I honestly bet I can just ask cursor to wrap a list of existing functions with API handlers and get it to write detailed documentation for them too. If u can tell me which operations you want, I think that could be done in like 15 minutes. I’ll make sure...
  15. algertc

    Full ALPR Database System for Blue Iris!

    To add speed, yes. Very minor though. Just adding a column. The app is made with Nextjs "server actions", which are sort of like a remote procedure call. Basically a way to directly call functions on the backend from the frontend without having REST endpoints for everything. I can still create...