pub struct PointToPlaneIcp { /* private fields */ }Expand description
Point-to-plane ICP registration.
Implementations§
Source§impl PointToPlaneIcp
impl PointToPlaneIcp
Sourcepub const fn new(config: PointToPlaneIcpConfig) -> Self
pub const fn new(config: PointToPlaneIcpConfig) -> Self
Creates a point-to-plane ICP algorithm from config.
Sourcepub const fn config(&self) -> PointToPlaneIcpConfig
pub const fn config(&self) -> PointToPlaneIcpConfig
Returns the config.
Sourcepub fn align_with_diagnostics(
&self,
source: &PointCloud,
target: &PointCloud,
) -> SpatialResult<RegistrationResult>
pub fn align_with_diagnostics( &self, source: &PointCloud, target: &PointCloud, ) -> SpatialResult<RegistrationResult>
Aligns source to target minimizing point-to-plane distance.
target must provide normals.
Trait Implementations§
Source§impl Clone for PointToPlaneIcp
impl Clone for PointToPlaneIcp
Source§fn clone(&self) -> PointToPlaneIcp
fn clone(&self) -> PointToPlaneIcp
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 PointToPlaneIcp
impl Debug for PointToPlaneIcp
Source§impl PartialEq for PointToPlaneIcp
impl PartialEq for PointToPlaneIcp
Source§fn eq(&self, other: &PointToPlaneIcp) -> bool
fn eq(&self, other: &PointToPlaneIcp) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for PointToPlaneIcp
impl StructuralPartialEq for PointToPlaneIcp
Auto Trait Implementations§
impl Freeze for PointToPlaneIcp
impl RefUnwindSafe for PointToPlaneIcp
impl Send for PointToPlaneIcp
impl Sync for PointToPlaneIcp
impl Unpin for PointToPlaneIcp
impl UnsafeUnpin for PointToPlaneIcp
impl UnwindSafe for PointToPlaneIcp
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