Recent content by algertc

  1. 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...
  2. 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...
  3. 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...
  4. algertc

    Full ALPR Database System for Blue Iris!

    I still have this agent branch that I have kept separate. I think adding proper semantic search with vectors of each altert image would be huge, but we need a model to do that, and depending on large paid models seems kind of conterintuitive to the whole goal of having self hosted surveilance...
  5. algertc

    Full ALPR Database System for Blue Iris!

    Forgot to post video of this. Here's the apple TV app I was talking about. Works really well in test mode on my TV, but again, I have to update my MacOS to make it public. Really really fast streams, even after coming through BI. Working great. m
  6. algertc

    Full ALPR Database System for Blue Iris!

    I'll have to look into this further. That seemed to resolve things testing with the sample input on my end. Please share anything else you see in the logs. The plate_number option especially has been pretty much free of issue since the original release, so I'm a bit stumped. When I have more...
  7. algertc

    Full ALPR Database System for Blue Iris!

    Alright, apologies for the delay. I thought I was going to have time to deal with that, but I was heading out to a wedding yesterday. I just pushed a docker build with the :nightly tag that should fix this. @avro201 can you please test this and see if it fixes your issue? In the Docker...
  8. algertc

    Full ALPR Database System for Blue Iris!

    “In no means proficient at this” - well your reports are very helpful and this is the first time I’ve seen anyone post the error with the specific columnar format, so you seem pretty savvy to me. It seems like this is actually a much more simple issue than I thought. Some people had reported...
  9. algertc

    Full ALPR Database System for Blue Iris!

    I didn't notice this part before: "Unfortunately, I get the same "Not Null Constraint" error." I don't really understand why this is happening and will have to investigate more. The violation of the constraint means that the app is decoding the api request and not getting a plate number out of...
  10. algertc

    Full ALPR Database System for Blue Iris!

    @avro201 no need to apologize at all. This is part of what the thread is for, and it helps me understand what needs to improve. Yes, that is what I mean. That looks correct to me. Additional reference available on the docs site and in the GitHub readme. Please try that and report back if it...
  11. algertc

    Full ALPR Database System for Blue Iris!

    Try using the plate macro instead of &JSON for now. Seems like something changed in CPAI or BI that’s causing issues parsing the AI response. I think this is related to Pete’s issue. Nothing is wrong with your BI. The output from CPAI is just kind of dense and alpr db needs to be able to handle...
  12. algertc

    Full ALPR Database System for Blue Iris!

    Thank you @PeteJ - will check with that. I built the AI secondary verification feature yesterday and it works right now, but not if there are multiple plates in the same image. I have an idea of how to get that worked out. The way it works right now: Enable secondary verification and add your...
  13. algertc

    Full ALPR Database System for Blue Iris!

    It's because the macro is called &JSON in Blue Iris. AI_dump was just my random name for it within the app.
  14. algertc

    Full ALPR Database System for Blue Iris!

    Maybe try adding an email alert with &JSON and see if you can email it to yourself. I think that should work.
  15. algertc

    Full ALPR Database System for Blue Iris!

    Recent similar GitHub issue: getting error in alpr · Issue #72 · algertc/ALPR-Database Like you mention, and I say in that GitHub issue, I made changes that seem to fix part of this in the last update. Seems like I still need to make the parsing more robust. It’s the multiple plate numbers in...