- it calculates the rmse of the estimation and ground truth data. It is pretty similar with EKF part.
- ( in this header file I added a R_radar, R_lidar for convenient.
- I added many string output to debug the code.
- initialize the necessary parameters of code. some parameters need to be tuned
- both of sensors(lidar, and radar ), their prediction step are same. However their update process are different. So in processmeasurement part, I made a whole code flow which can run same prediction code but run different update steps.
- augmented state generation
- generat sigma points
- make prediction based on the motion model
- radar gets 3 data. The measurement transition matrix is totally nonlinear. So the nonlinear function were made. using the sigma points which were predicted in prediction step. Based on the UKF functions, updating the x prediction and p prediction that are used in next step.
- lidar gets 2data. The measurement transition matrix is linear so the linear function were implemented.By using the sigma points from X state prediction step, Z prediction(sigma points) and mean of zprediction , measurement error can be calculated.Then, by using z error and x error , correlation matrix and Kalman gain can be calculated. Then same with update radar part, updating the x prediction and p prediction that are used in next step.
RMSE: X: 0.0690 Y: 0.0830 VX: 0.3336 VY: 0.2344
in more detail graph , zoom in figure is shown as below.
Reference
- darienmt
- NikolasEnt
- mvirgo
- Udacity course
- Docker
Resource
- Docker images issue https://medium.com/@flaaud159/udacity-self-driving-car-term2-extended-kalman-filter-project-environment-setting-6861f81cebad
- Docker based Project utility(Co-work relationship gragh)
Self-Driving Car Engineer Nanodegree Program
In this project utilize an Unscented 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
This repository includes two files that can be used to set up and intall uWebSocketIO for either Linux or Mac systems. For windows you can use either Docker, VMware, or even Windows 10 Bash on Ubuntu to install uWebSocketIO. Please see this concept in the classroom for the required version and installation scripts.
Once the install for uWebSocketIO is complete, the main program can be built and ran by doing the following from the project top directory.
- mkdir build
- cd build
- cmake ..
- make
- ./UnscentedKF
Tips for setting up your environment can be found here
Note that the programs that need to be written to accomplish the project are src/ukf.cpp, src/ukf.h, tools.cpp, and tools.h
The program main.cpp has already been filled out, but feel free to modify it.
Here is the main protcol that main.cpp uses for uWebSocketIO in communicating with the simulator.
INPUT: values provided by the simulator to the c++ program
["sensor_measurement"] => the measurment that the simulator observed (either lidar or radar)
OUTPUT: values provided by the c++ program to the simulator
["estimate_x"] <= kalman filter estimated position x ["estimate_y"] <= kalman filter estimated position y ["rmse_x"] ["rmse_y"] ["rmse_vx"] ["rmse_vy"]
- cmake >= 3.5
- All OSes: click here for installation instructions
- make >= 4.1 (Linux, Mac), 3.81 (Windows)
- 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
- Clone this repo.
- Make a build directory:
mkdir build && cd build
- Compile:
cmake .. && make
- Run it:
./UnscentedKF
Previous versions use i/o from text files. The current state uses i/o from the simulator.
We've purposefully kept editor configuration files out of this repo in order to keep it as simple and environment agnostic as possible. However, we recommend using the following settings:
- indent using spaces
- set tab width to 2 spaces (keeps the matrices in source code aligned)
Please stick to Google's C++ style guide as much as possible.
This is optional!
If you'd like to generate your own radar and lidar data, see the utilities repo for Matlab scripts that can generate additional data.
This information is only accessible by people who are already enrolled in Term 2 of CarND. If you are enrolled, see the project page for instructions and the project rubric.
A well written README file can enhance your project and portfolio. Develop your abilities to create professional README files by completing this free course.