In this project I am utilizing 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.
This project involves the Term 2 Simulator which can be downloaded here.
- uWebSocketIO for either Linux or Mac systems.
- cmake >= 3.5
- All OSes: click here for installation instructions
- make >= 4.1
- 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
- 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
Once the install for uWebSocketIO is complete, the main program can be built and run by doing the following from the project top directory.
- mkdir build
- cd build
- cmake ..
- make
- ./ExtendedKF
The project can also be built with Microsoft Visual Studio according to a useful article from Fahid Zubair.
README.md
,readme.html
: you are reading it! :)src/FusionEKF.cpp
,src/FusionEKF.h
: Kalman filter usage for lidar and radarsrc/kalman_filter.cpp
,src/kalman_filter.h
: Core Kalman filter logicsrc/tools.cpp
,src/tools.h
: tools to compute Jacobian matrices and RMSE values