Bryan-Rathos / SFND_3D_Object_Tracking

Tracking 3D bounding boxes and computing Time To Collision based on LIDAR and camera.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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 final project, you will implement the missing parts in the schematic. To do this, you will complete four major tasks:

  1. First, you will develop a way to match 3D objects over time by using keypoint correspondences.
  2. Second, you will compute the TTC based on Lidar measurements.
  3. You will then proceed 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.
  4. And lastly, you will conduct 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.

Project Rubrics

  • FP.1 Match 3D Objects

In the matchBoundingBox() function we make a table matchCountMap whose size is (num bounding boxes in previous frame x num bounding boxes in current frame). We iterate over the bounding boxes of previous and current frames and keep a track of keypoints as to which bounding box they belong in each frame. The number of keypoints in every bounding box betwwen frames is updated in the table. This is done in line 272-287 of camFusion_Student.cpp. Next we find the best match for the bounding box in the previous frame in the current frame by choosing the bounding box id which has the highest number of matches i.e. max element of each row of matchCountMap would give us the best match between frames for the bounding boxes. This is implememnted in lines 297-301 and the best bounding boxes matches are returned from the function.

  • FP.2 Compute Lidar-based TTC

The formula used for TTc lidar is same as discussed in the classroom. The main task here is to deal with the noisy measurements/outliers. To do this, I use the boxplot technique to find out the Inter-Quartile Range (IQR) of the 3D LIDAR points. The lower and upper threshhold limit was chosen as Q1 - 1.2 * IQR and Q3 + 1.2 * IQR respectively. After performing the outlier removal I found it better to use the mean x value of the LIDAR points in the TTC calculations instead of the x minimum of the points as it gives better TTC calculations. Using x minimum sometimes causes erroe when the measurement is faulty near the object edges. This can be foundin the computeTTCLidar() function. I have created a utils.cpp file which contains the outlier removal function as well as a fucntion for IQR calculations separately for LIDAR and Camera.

  • FP.3 Associate Keypoint Correspondences with Bounding Boxes

This functionality is present in the clusterKptMatchesWithROI() function. I created a vector of pairs distMap to store the index of keypoints within the bounding box of the current frame which have been matched with keypoints in the same bounding box in the previous frame in the first part of the pair. The second part of the vector of pairs store the euclidean distance between the matches. Now, the outliers present in the distMap are removed by using the same Inter-Qaurtile Range (IQR) technique as used in the Lidar case. This is implemented in utils.cpp The index of the inliers are added to the kptMatches of the respective boundingBox in every frame.

  • FP.4 Compute Camera-based TTC

In the TTC for camera we compute the distance ratios between all matched keypoints within the bounding boxes. We choose the median of the distance ratio for the camera TTC computation so as to deal with outliers if any.

  • FP.5 Performance Evaluation 1

Based on the Lidar top view perspective the x_min is always decreasing, but the difference in x_min between consecutive frames is not decreasing at same rate. Therefore, the TTC doesn't show a decreasing trend between all the frames as we would expect. Some of the cases where TTC has been off maybe be due to the noisu=y measurements from the Lidar itself. The table below used the AKAZE+BRIEF detector and descriptor combination.

Frame TTC Lidar TTC Camera
0-1 13.144 14.6617
1-2 12.9549 15.4843
2-3 16.3229 14.9118
3-4 15.9883 15.1336
4-5 11.7422 15.3667
5-6 15.1703 15.5464
6-7 11.3822 15.7052
7-8 12.9842 14.8902
8-9 13.0407 15.6456
9-10 12.4117 12.0318
10-11 11.6781 12.9694
11-12 10.5236 12.4144
12-13 9.3932 10.2317
13-14 9.54557 10.1498
14-15 8.62937 10.4327
15-16 8.67236 10.14
16-17 11.5561 9.72712
17-18 8.04705 9.66427

These inconsistencies can be seen in the TTC results in the table above. For example, in the frame 2-3, 3-4, 16-17 the TTc suddenly increases which could be probably a bit off than expected.

  • FP.6 Performance Evaluation 2

The results of this section can be found [here] (./results/FP-6.csv)

The below table shows the TTC for Camera when using the FAST+BRIEF detector and descriptor combination. We can see that the TTC estimates are arent as great as we expect them to be. However, this detector descriptor combination is the fastest. Compared to the TTC camera estimates AKAZE+BRIEF descriptor combination as shown in the FP.5 section, AKAZE+BRIEF performs better than FAST+BRIEF in terms of having a better camera TTC estimates.

Frame TTC Lidar TTC Camera
0-1 13.144 12.5923
1-2 12.9549 11.3472
2-3 16.3229 13.2228
3-4 15.9883 13.2296
4-5 11.7422 -inf
5-6 15.1703 13.5856
6-7 11.3822 12.7507
7-8 12.9842 12.2852
8-9 13.0407 13.6469
9-10 12.4117 13.4681
10-11 11.6781 14.3636
11-12 10.5236 10.8819
12-13 9.3932 12.4052
13-14 9.54557 11.5337
14-15 8.62937 11.8945
15-16 8.67236 13.659
16-17 11.5561 7.8014
17-18 8.04705 11.9485

Final Result

THANK YOU

Link to the yolo weight file -> https://pjreddie.com/media/files/yolov3.weights

About

Tracking 3D bounding boxes and computing Time To Collision based on LIDAR and camera.


Languages

Language:C++ 99.1%Language:CMake 0.9%