pub struct IcpScanMatcher { /* private fields */ }Expand description
ICP-backed scan matcher for sequential point-cloud odometry.
Implementations§
Trait Implementations§
Source§impl Clone for IcpScanMatcher
impl Clone for IcpScanMatcher
Source§fn clone(&self) -> IcpScanMatcher
fn clone(&self) -> IcpScanMatcher
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for IcpScanMatcher
impl Debug for IcpScanMatcher
Source§impl PartialEq for IcpScanMatcher
impl PartialEq for IcpScanMatcher
Source§fn eq(&self, other: &IcpScanMatcher) -> bool
fn eq(&self, other: &IcpScanMatcher) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl ScanMatcher for IcpScanMatcher
Available on crate feature scan-icp only.
impl ScanMatcher for IcpScanMatcher
Available on crate feature
scan-icp only.Source§fn match_scans(
&self,
previous: &PointCloud,
current: &PointCloud,
) -> MappingResult<Isometry3<f32>>
fn match_scans( &self, previous: &PointCloud, current: &PointCloud, ) -> MappingResult<Isometry3<f32>>
Estimates
current_T_previous from two same-frame scans.impl Copy for IcpScanMatcher
impl StructuralPartialEq for IcpScanMatcher
Auto Trait Implementations§
impl Freeze for IcpScanMatcher
impl RefUnwindSafe for IcpScanMatcher
impl Send for IcpScanMatcher
impl Sync for IcpScanMatcher
impl Unpin for IcpScanMatcher
impl UnsafeUnpin for IcpScanMatcher
impl UnwindSafe for IcpScanMatcher
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more