CodeProject.ai with License Plate Reader module - HowTo?

@Nunofya It's on BI settings with CodeProject.AI logo on the right

See your screenshot, it's underneath the "Face recognition" checkbox
 
  • Like
Reactions: Nunofya
I also noticed you are using alpr as a custom model. Is there even an alpr custom model available? Try using license-plate.

Here's how mine is configured:

Screen Shot 2023-08-25 at 5.18.20 PM.png
 
UI3 only shows the one plate
After watching this for a few hours I noticed that I'm missing a lot of plates that clearly should have been recognized. Switching back to the license-plate model seems significantly more reliable.

Screen Shot 2023-08-25 at 9.26.37 PM.png

Screen Shot 2023-08-25 at 9.35.04 PM.png
 
After watching this for a few hours I noticed that I'm missing a lot of plates that clearly should have been recognized. Switching back to the license-plate model seems significantly more reliable.

View attachment 170800

View attachment 170801
It should not make a difference because the ALPR module uses the license-plate model to find the plate before it does the OCR. Post a screenshot of your camera's AI settings

Python:
            start_time = time.perf_counter()
            detect_plate_response = await module_runner.call_api("vision/custom/license-plate",
                                                                 files={ "image": image_data },
                                                                 data={"min_confidence": opts.plate_confidence})
            inferenceMs += int((time.perf_counter() - start_time) * 1000)
 
  • Like
Reactions: actran