Object tracking algorithms using camera and lidar sensor data based on the Udacity Nanodegree Program "Become a Sensor Fusion Engineer"
Within this protect object tracking algorithms based on camera sensor data are implemented. Keypoint detectors, descriptors, and methods to match them between successive images are considered. How to detect objects in an image using the YOLO deep-learning framework is considered. Finally, you will know how to associate regions in a camera image with Lidar points in 3D space.
In this final project, the missing parts in the schematic have been implemented. It contains the four major tasks:
- First, a way to match 3D objects over time by using keypoint correspondences is developed.
- Second, computing the TTC based on Lidar measurements is considered.
- It will be proceeded to do the same using the camera, which requires to first associate keypoint matches to regions of interest and then to compute the TTC based on those matches.
- And lastly, various tests with the framework will be conducted. The goal is to identify the most suitable detector/descriptor combination for TTC estimation and also to search for problems that can lead to faulty measurements by the camera or Lidar sensor.
- cmake >= 2.8
- All OSes: click here for installation instructions
- make >= 4.1 (Linux, Mac), 3.81 (Windows)
- Linux: make is installed by default on most Linux distros
- Mac: install Xcode command line tools to get make
- Windows: Click here for installation instructions
- Git LFS
- Weight files are handled using LFS
- OpenCV >= 4.1
- This must be compiled from source using the
-D OPENCV_ENABLE_NONFREE=ON
cmake flag for testing the SIFT and SURF detectors. - The OpenCV 4.1.0 source code can be found here
- This must be compiled from source using the
- gcc/g++ >= 5.4
- Linux: gcc / g++ is installed by default on most Linux distros
- Mac: same deal as make - install Xcode command line tools
- Windows: recommend using MinGW
- Clone this repo.
- Make a build directory in the top level project directory:
mkdir build && cd build
- Compile:
cmake .. && make
- Run it:
./3D_object_tracking
.