Skip to main content

RelativeMotionEstimator

Trait RelativeMotionEstimator 

Source
pub trait RelativeMotionEstimator {
    // Required method
    fn estimate(
        &self,
        previous: &StampedPose,
        current: &StampedPose,
    ) -> MappingResult<DeltaMotion>;
}
Expand description

Estimates relative motion for odometry / keyframe tracking.

Required Methods§

Source

fn estimate( &self, previous: &StampedPose, current: &StampedPose, ) -> MappingResult<DeltaMotion>

Estimates motion aligning previous toward current coordinates.

Implementors§