From c54a99ba9946577f2a6b03bfe6b3dc4b2cb8493d Mon Sep 17 00:00:00 2001 From: Andrea Palazzi Date: Mon, 27 Nov 2017 21:35:55 +0100 Subject: [PATCH] Update README.md --- README.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/README.md b/README.md index 26e8d88..6b598e9 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,18 @@ Hope this might be useful to someone! :-) - **Summary:** Utilize an Unscented Kalman Filter to estimate the state of a moving object of interest with noisy lidar and radar measurements. Kalman filter, lidar measurements and radar measurements are used to track the bicycle's position and velocity. - **Keywords:** C++, Kalman Filter + #### [P8 - Kidnapped Vehicle](project_8_kidnapped_vehicle) + - **Summary:** Your robot has been kidnapped and transported to a new location! Luckily it has a map of this location, a (noisy) GPS estimate of its initial location, and lots of (noisy) sensor and control data. In this project you will implement a 2 dimensional particle filter in C++. Your particle filter will be given a map and some initial localization information (analogous to what a GPS would provide). At each time step your filter will also get observation and control data. + - **Keywords:** C++, Particle Filter + + #### [P9 - PID Control](project_9_PID_control) + - **Summary:** Implement a PID controller for keeping the car on track by appropriately adjusting the steering angle. + - **Keywords:** C++, PID Controller + +#### [P10 - MPC Control](project_10_MPC_control) +- **Summary:** Implement an MPC controller for keeping the car on track by appropriately adjusting the steering angle. Differently from previously implemented PID controller, MPC controller has the ability to anticipate future events and can take control actions accordingly. Indeed, future time steps are taking into account while optimizing current time slot. +- **Keywords:** C++, MPC Controller +