From Prototype to Production: Optimizing YOLOv8 and SORT for Real-Time Automotive Perception
A deep dive into optimizing a full-stack perception engine using YOLOv8 and SORT, achieving 127 FPS through TensorRT and FP16 quantization.
Road segmentation with U-Net from monocular camera
This post explores road segmentation using a U-Net architecture trained on monocular images from the KITTI dataset. The task focuses on identifying drivable areas from RGB inputs, a challenge due to lighting, shadows, and variable road conditions. I detail the model architecture, training strategies, and key hyperparameters such as learning rate selection and loss functions.
Camera-based object tracking: An implementation of SORT algorithm
This post explores camera-based object tracking through the implementation of the Simple Online and Realtime Tracker (SORT) algorithm. It covers key concepts and foundational elements essential for object tracking applications, demonstrating them with a SORT implementation for automotive tracking using the KITTI dataset. While SORT is computationally efficient and relatively simple, it delivers solid performance in the KITTI object tracking challenge.