Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 915 Bytes

File metadata and controls

35 lines (23 loc) · 915 Bytes

🚀 Simple Tracking and Ranging

This is a simple auto driving object tracking and ranging project. It uses yolov5 for object detection and a kalman filter based tracker to estimate object motion and position. The final output visualizes the tracking and ranging results.

🎥 Demo

Demo 1

⚙️ Build

This project depends on OpenCV and ONNX Runtime.

⚠️ Note : It was built and tested on macOS. On Linux or Windows, modifications to the CMakeLists.txt file may be necessary if errors occur during configuration or build.

mkdir build
cd build
cmake ..
make

🔧 Run

Once built, run the demo using:

./yolo_track

References