LAIR- All About Particle Filters
Hi everyone! My name is Hannah, and I am researching under LAIR this summer with Prof. Clark! My partner, Olivia, and I have kicked off the summer with working on a Particle Filter. The basic idea of a particle filter is that it can be used as a localization technique. In our case, we are working on coding up a Particle Filter that will run on our Autonomous Underwater Vehicle (AUV) so that it can estimate the location of a shark the AUV is tracking. A Particle Filter works by creating a collection of random particles, and each particle is its own estimate of the shark’s position. These random particles have a ‘weight’ or importance factor. The weights associated with each particle are updated according to how close the particle is from the AUV’s most recent measurement of the shark’s position. The equation used for this update is a Gaussian function. An easy way to think of the weight is that a higher weight assumes that the particle has more importan...