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§
Sourcefn estimate(
&self,
previous: &StampedPose,
current: &StampedPose,
) -> MappingResult<DeltaMotion>
fn estimate( &self, previous: &StampedPose, current: &StampedPose, ) -> MappingResult<DeltaMotion>
Estimates motion aligning previous toward current coordinates.