Search results

  1. VideoDad

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

    What is it you are trying to accomplish? That's a set of data that is ready to be used for training. But it has more than just vehicle license plates so you'd have to go through and throw out objects that you didn't want. The result would be a trained model that could detect when an image...
  2. VideoDad

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

    Personally, I would try using Collab on a test project and see how far you can take it. I think it's better to first determine if you can make a training data set and get some results using someone else's hardware first. Or if you have a low end GPU (for example I started with a 1050Ti), see...
  3. VideoDad

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

    That's a training data set, meaning someone had to go through each image and tag objects that were important to their training objective. In this case, the person is putting rectangles around cars, license plates, etc. but ignoring street signs, lamp posts, buildings, etc. There are some tools...
  4. VideoDad

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

    Then I suppose you could break each image into smaller fixed images. So maybe 18 images that are each 640 × 720. You'd have to get a batch program for cropping and first run it for a crop of (0,0) to (639,719). Then for (640,0) to (1279,719), etc. Each time you move over 640 pixels in...
  5. VideoDad

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

    Is the vehicle always in a certain region of the picture? If so there are programs that will do a batch crop to a predefined rectangle. Alternatively, if you are handy with programming, you could have each photo run through AI detection for a vehicle, that returns a rectangle for the vehicle...
  6. 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.
  7. 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...
  8. 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.
  9. 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?
  10. 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...
  11. 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:
  12. 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...
  13. 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.
  14. 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...
  15. 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...
  16. 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.
  17. 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.
  18. 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.
  19. 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")
  20. 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
  21. 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.
  22. 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...
  23. 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. {...
  24. 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
  25. VideoDad

    Full ALPR Database System for Blue Iris!

    Did you install the DB separately or in the same Docker with the app?
  26. 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?
  27. 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...
  28. 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.
  29. VideoDad

    CPAI Custom Models help

    Yes, under the list of vehicle objects.