pub trait Estimator2D {
// Required methods
fn predict(&mut self, control: &ControlInput, dt: f64);
fn update(&mut self, measurement: Point2D);
fn get_state(&self) -> State2D;
}Expand description
Simplified state estimator for 2D localization
Required Methods§
Sourcefn predict(&mut self, control: &ControlInput, dt: f64)
fn predict(&mut self, control: &ControlInput, dt: f64)
Prediction step