Laramie downtown parking lot detection
newYOLO tracking with marked parking zones. Empty slots in green, occupied in red.
GitHub: feat/parkingTracked footage for review.
A full pipeline that takes raw highway video, detects cars with YOLO plus ByteTrack, feeds their movement history into EdgeVTP, and draws where the model thinks each car will go over the next 5 seconds.
I grab the bottom-center of each car's bounding box as its anchor point, sample positions at 5Hz to match the training data, and build 15-step history windows. Coordinates stay in pixels because the Carolinas model was trained that way.
The model was trained on clean, sparse scenes with 2-3 cars, but live video has 10+ cars and noisy tracks. With isolate_agents=True predictions get jittery, but with isolate_agents=False crowds cause weird swerves. Trajectory clipping hides how bad raw predictions really are, which is why I added --no-traj-clip to see the truth. If YOLO misses a car or a bounding box jumps, the model thinks the car teleported. And since there's no ground truth for live video, I can only eyeball whether the predictions look right.
YOLO tracking with marked parking zones. Empty slots in green, occupied in red.
GitHub: feat/parking