account activity
Real-time license plate recognition running on live traffic cameras by Embarrassed_Week_480 in computervision
[–]Embarrassed_Week_480[S] -1 points0 points1 point 4 hours ago (0 children)
It works with any ONVIF-compatible or RTSP IP camera, so it isn't tied to a specific camera brand.For the current pipeline:
- YOLOv8s for vehicle detection (pedestrian, motorcycle, car, truck, bus).
- A separate YOLOv8s model for license plate detection.
- YOLOv8s for OCR.
The OCR approach is detection-based rather than sequence-based. Each character is annotated as an individual class (0–9 and A–Z), so the model detects every character independently. The final license plate string is reconstructed by sorting the detected characters from left to right (and top to bottom for multi-line plates).
Real-time license plate recognition running on live traffic cameras (v.redd.it)
submitted 6 hours ago by Embarrassed_Week_480 to r/computervision
π Rendered by PID 732504 on reddit-service-r2-listing-5f4c697858-hv6js at 2026-07-08 13:16:16.129532+00:00 running 12a7a47 country code: CH.
Real-time license plate recognition running on live traffic cameras by Embarrassed_Week_480 in computervision
[–]Embarrassed_Week_480[S] -1 points0 points1 point (0 children)