Skip to content

nyoshimura/CarND-Extended-Kalman-Filter-Project

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Extended Kalman Filter Project

Self-Driving Car Engineer Nanodegree Program

In this project utilize a kalman filter to estimate the state of a moving object of interest with noisy lidar and radar measurements alt text

Passing the project requires obtaining RMSE values that are lower that the tolerance outlined in the project rubric.

There are 7 criterias:

  1. My code should compile. (done)
  2. px, py, vx, vy output coordinates must have an RMSE <= [.11, .11, 0.52, 0.52] (done)
  3. My Sensor Fusion algorithm follows the general processing flow (done)
  4. My Kalman Filter algorithm handles the first measurements appropriately. (done)
  5. My Kalman Filter algorithm first predicts then updates. (done)
  6. My Kalman Filter can handle radar and lidar measurements. (done)
  7. My algorithm should avoid unnecessary calculations. (done)

Changed part

At 4, I forgot to initialize H_laser_, so I added. Then RMSE is drastically improved, and 2 is satisfied. As you can see in the above figure, RMSE is:

X: 0.0974 < 0.11
Y: 0.0855 < 0.11
VX: 0.4663 < 0.52
VY: 0.4729 < 0.52

About

Term 2 Project 1

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published