Skip to content

Mostafa-Mansour/3D-object-tracking-for-ttc

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SFND 3D Object Tracking

Welcome to the final project of the camera course. By completing all the lessons, you now have a solid understanding of keypoint detectors, descriptors, and methods to match them between successive images. Also, you know how to detect objects in an image using the YOLO deep-learning framework. And finally, you know how to associate regions in a camera image with Lidar points in 3D space. Let's take a look at our program schematic to see what we already have accomplished and what's still missing.

In this project, I implemented these tasks:

  1. First, I developed a way to match 3D objects over time by using their ROI at different time steps.
  2. Second, I computed the TTC based on Lidar measurements.
  3. I did the same using the camera, which required to first associate keypoint matches to regions of interest and then to compute the TTC based on those matches.
  4. I conducted various tests with the framework. Your 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. In the last course of this Nanodegree, you will learn about the Kalman filter, which is a great way to combine the two independent TTC measurements into an improved version which is much more reliable than a single sensor alone can be. But before we think about such things, let us focus on your final project in the camera course.

Dependencies for Running Locally

Basic Build Instructions

  1. Clone this repo.
  2. Make a build directory in the top level project directory: mkdir build && cd build
  3. Compile: cmake .. && make
  4. Run it: ./3D_object_tracking.

Comments on the final performance

  1. TTC is flacuating at each time step due to noisy measurements.
  2. TTC using LiDARm in general is more accurate than TTC using camera. However, it is still sometimes gives weird results.
  3. Due to miscorrespondance, TTC using camera is not accurate.
  4. I found that ORB is a good descriptor to use for this task.
  5. The results can be improved if we take the median over some steps OR if we use kind of Bayesian filter to track the distance over time.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published