Search results

  1. VideoDad

    How to train a custom YOLOv5 model using CodeProject.AI Training for YoloV5 6.2 module

    Then the best I can suggest is to crop the larger images down to just the car.
  2. VideoDad

    How to train a custom YOLOv5 model using CodeProject.AI Training for YoloV5 6.2 module

    Are you trying to train your own model? Or just use the existing ALPR model? And are you trying to detect the presence of a license plate in the frame, or actually read the letters/numbers on the plate? The YOLO models generally work by turning the input image into a 640 × 640 square then...
  3. VideoDad

    Full ALPR Database System for Blue Iris!

    Are you seeing the plate detected in BI? The call to the ALPR Database doesn't include a plate, so either it's not being detected by the ALPR module in BI, or you're not sending the correct string in the call from BI. Please confirm that first.
  4. VideoDad

    Full ALPR Database System for Blue Iris!

    So are you saying only data read using the ai_dump tag, will have the requisite info for training and I don't have to worry about my reads from affecting things if I still use the memo or plate calls?
  5. VideoDad

    Full ALPR Database System for Blue Iris!

    I'm not presently using the ALPR module to do my plate reads; using the free PlateRecognizer instead (<2500 plates per month). I'm also feeding in my delivery vehicle detections as if they were plates. What effect will that have on the data sent for training? My delivery data isn't truly a...
  6. VideoDad

    Full ALPR Database System for Blue Iris!

    I'm moving further discussion on Blue Iris machines with open port forwarding to another existing thread:
  7. VideoDad

    What does this mean? Are there people connecting to my Blue Iris?

    Not to sound like a broken record, but if you are using port forwarding to access Blue Iris, you are vulnerable Several of us, in another thread used Censys Search to search for PCs that presented the Blue Iris login page and found almost 22,000 in the US and a total of about 32,000 worldwide...
  8. VideoDad

    Full ALPR Database System for Blue Iris!

    Correction: 1 ALPR Database, 2 Blue Iris Logins, 1 CPAI Server and what looks like a login for Home Assistant.
  9. VideoDad

    Full ALPR Database System for Blue Iris!

    I won't give any further information, but they are definitely running possibly 3 instances of the ALPR Database as well as CPAI with YOLOv5 6.2 on GPU and the ALPR module. It could be someone from Reddit or elsewhere that found the GitHub repository I suppose. CPAI just detected a plate...
  10. VideoDad

    Full ALPR Database System for Blue Iris!

    I won't give any further information, but they are definitely running possibly 3 instances of the ALPR Database as well as CPAI with YOLOv5 6.2 on GPU and the ALPR module. It could be someone from Reddit or elsewhere that found the GitHub repository I suppose. CPAI just detected a plate...
  11. VideoDad

    Full ALPR Database System for Blue Iris!

    Uh oh! Somebody who is using the ALPR Database may want to switch from port forwarding to VPN. Your ALPR login page is accessible as is your CodeProject.AI server. The latter doesn't even have a password, so someone can see the dashboard, reconfigure things, look at your logs, etc.
  12. VideoDad

    Full ALPR Database System for Blue Iris!

    If you do make a free account, you can type something this in the query line: host.services.endpoints.http.html_title:"Blue Iris Login" and host.location.city:"Dallas" and host.location.province:"Texas" and host.location.country:"United States" Note: You'll probably run out of credits after awhile.
  13. VideoDad

    Full ALPR Database System for Blue Iris!

    Mostly it looks like they've done port forwarding so the UI3 page is exposed. I've got about 10 in my city.
  14. VideoDad

    Full ALPR Database System for Blue Iris!

    Not for the dashboard, but there is on the next tab down on the ALPR Recognition Feed (aka "Live Feed")
  15. VideoDad

    Full ALPR Database System for Blue Iris!

    Drat! I should have spoken up louder and saved a lot of time: https://ipcamtalk.com/threads/full-alpr-database-system-for-blue-iris.79082/post-914304
  16. VideoDad

    Full ALPR Database System for Blue Iris!

    That all looks correct. I'll have to defer to Charlie or Mike, or someone that knows why the database might be failing on the insertion of a new plate.
  17. VideoDad

    Full ALPR Database System for Blue Iris!

    The log indicates that you are successfully calling the DB API when BI alerts on a plate. And it looks like the image is saved successfully, but then the rest of the plate read data doesn't save correctly. Can you post the complete text of your post/payload from the "On Alert" that makes the...
  18. VideoDad

    Full ALPR Database System for Blue Iris!

    Also, in your AI Alert, for the Post/payload, you may want to use the MEMO field instead of the PLATE field from the original instructions. I'd also recommend adding the ALERT_PATH and ALERT_CLIP fields to allow linking back to Blue Iris to play the associated clip, if not already there. {...
  19. VideoDad

    Full ALPR Database System for Blue Iris!

    Try getting the latest schema.sql, migration.sql and docker-compose.yml. Then in the ALPR folder, run these commands: docker compose down docker compose pull docker compose up -d
  20. VideoDad

    Full ALPR Database System for Blue Iris!

    Did you install the DB separately or in the same Docker with the app?
  21. VideoDad

    Full ALPR Database System for Blue Iris!

    It looks like you don't have the latest database schema. Can you try running the update.ps1 Powershell script and following the prompts?
  22. VideoDad

    Full ALPR Database System for Blue Iris!

    Check things in this order: 1) Confirm plates are being recognized on the BI console (done) 2) Confirm the call from BI is being made when a plate is detected. (check the BI log to confirm the call is happening. The return code should be 200. 3) If you are seeing errors confirm the IP address...
  23. VideoDad

    Is CodeProject.AI done?

    Any update in when support for a YOLO11 module will be added? Also, I can't seem to get any reply on when (if?) my delivery module will ever be incorporated in the preloaded custom models. https://github.com/VideoDad/AI-Models All my requests in this area have gone unanswered.
  24. VideoDad

    CPAI Custom Models help

    Yes, under the list of vehicle objects.
  25. VideoDad

    CPAI Custom Models help

    It has been moved to the global AI settings tab and it applies to all cameras now.
  26. VideoDad

    A Year of Updates?

    Are you still under a support plan? You can only update to any version that was within your support period or else it will put you into "evaluation" mode with the blue text watermark. I probably would recommend sticking with the version you had. Make sure everything is connected and running...
  27. VideoDad

    Full ALPR Database System for Blue Iris!

    Also, is there anywhere to see the version number in the app?
  28. VideoDad

    AI code project using cpu

    One thing I notice is only one of your cameras has a frame rate ratio of 1.0. All the rest are all 0.25, 0.12, 0.50, 0.33, etc.. which indicates your cameras aren't set with their FPS and iFrame interval the same. It's recommended they be the same to get a ratio of 1.0 meaning you store one...
  29. VideoDad

    Full ALPR Database System for Blue Iris!

    I'm still seeing the broken behavior also. The count of plates that were corrected doesn't get added to existing plates already read correctly. For example, if I have 10 plates labeled "GOOD" and 3 plates labeled "BAD", when I correct them to "GOOD" the count should update to 13, but it doesn't...