elvout / cs393r

CS 393R Graduate Autonomous Robots, Fall 2021 | Autobots
0 stars 0 forks source link

Simple Motion Model Implementation #40

Closed elvout closed 3 years ago

elvout commented 3 years ago

I've implemented the simple motion model based on a diff-drive robot in particle_filter.cc with an initial assignment of hyperparameters. The motion model appears to exhibit the general expected behavior in the simulator, where the particles fan out over time as the robot moves. The hyperparameters need to be tuned (tracked in #28).

Demonstration here (links to slack).

I've also changed the API for ParticleFilter::GetLocation such that it no longer takes pointers as parameters and now returns a pair of values.

Closes #27