Skip to content

This is a project about Unscented Kalman Filter. I added README.md for description my code structure and functions in detail.The starter code is forked from udacity. By using the provided simulator from udacity, the performance of algorithm is validated.

License

Notifications You must be signed in to change notification settings

Fred159/Udacity-Term2-Project2-UKF

 
 

Repository files navigation

docker based UKF

tools.cpp file

  • it calculates the rmse of the estimation and ground truth data. It is pretty similar with EKF part.

ukf.h

  • ( in this header file I added a R_radar, R_lidar for convenient.

ukf.cpp

  • I added many string output to debug the code.

initialization part

  • initialize the necessary parameters of code. some parameters need to be tuned

process measurement part

  • 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.

prediction part

  • augmented state generation
  • generat sigma points
  • make prediction based on the motion model

update radar part

  • 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.

update lidar

  • 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.

Simulation result is showed as below figure.

RMSE: X: 0.0690 Y: 0.0830 VX: 0.3336 VY: 0.2344

UKF result1

in more detail graph , zoom in figure is shown as below.

UKF result2

Reference

  1. darienmt
  2. NikolasEnt
  3. mvirgo
  4. Udacity course
  5. Docker

Resource

  1. Docker images issue https://medium.com/@flaaud159/udacity-self-driving-car-term2-extended-kalman-filter-project-environment-setting-6861f81cebad
  2. Docker based Project utility(Co-work relationship gragh)
  • Visual studio 2017
  • Docker for windows
  • github for windows Docker,VS,Github Co-work relationship gragh

Unscented Kalman Filter Project Starter Code

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.

  1. mkdir build
  2. cd build
  3. cmake ..
  4. make
  5. ./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"]


Other Important Dependencies

Basic Build Instructions

  1. Clone this repo.
  2. Make a build directory: mkdir build && cd build
  3. Compile: cmake .. && make
  4. Run it: ./UnscentedKF Previous versions use i/o from text files. The current state uses i/o from the simulator.

Editor Settings

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)

Code Style

Please stick to Google's C++ style guide as much as possible.

Generating Additional Data

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.

Project Instructions and Rubric

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.

How to write a README

A well written README file can enhance your project and portfolio. Develop your abilities to create professional README files by completing this free course.

About

This is a project about Unscented Kalman Filter. I added README.md for description my code structure and functions in detail.The starter code is forked from udacity. By using the provided simulator from udacity, the performance of algorithm is validated.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 98.6%
  • C 1.2%
  • Other 0.2%