In this project utilize a kalman filter to estimate the state of a moving object of interest with noisy lidar and radar measurements
Passing the project requires obtaining RMSE values that are lower that the tolerance outlined in the project rubric.
- My code should compile. (done)
- px, py, vx, vy output coordinates must have an RMSE <= [.11, .11, 0.52, 0.52] (done)
- My Sensor Fusion algorithm follows the general processing flow (done)
- My Kalman Filter algorithm handles the first measurements appropriately. (done)
- My Kalman Filter algorithm first predicts then updates. (done)
- My Kalman Filter can handle radar and lidar measurements. (done)
- My algorithm should avoid unnecessary calculations. (done)
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