Struct PointToPlaneIcp
pub struct PointToPlaneIcp { /* private fields */ }Expand description
Point-to-plane ICP registration.
Implementations§
§impl PointToPlaneIcp
impl PointToPlaneIcp
pub const fn new(config: PointToPlaneIcpConfig) -> PointToPlaneIcp
pub const fn new(config: PointToPlaneIcpConfig) -> PointToPlaneIcp
Creates a point-to-plane ICP algorithm from config.
pub const fn config(&self) -> PointToPlaneIcpConfig
pub const fn config(&self) -> PointToPlaneIcpConfig
Returns the config.
pub fn align_with_diagnostics(
&self,
source: &PointCloud,
target: &PointCloud,
) -> Result<RegistrationResult, SpatialError>
pub fn align_with_diagnostics( &self, source: &PointCloud, target: &PointCloud, ) -> Result<RegistrationResult, SpatialError>
Aligns source to target minimizing point-to-plane distance.
target must provide normals.
Trait Implementations§
§impl Clone for PointToPlaneIcp
impl Clone for PointToPlaneIcp
§fn clone(&self) -> PointToPlaneIcp
fn clone(&self) -> PointToPlaneIcp
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read more§impl Debug for PointToPlaneIcp
impl Debug for PointToPlaneIcp
§impl PartialEq for PointToPlaneIcp
impl PartialEq for PointToPlaneIcp
§impl PointCloudRegistration for PointToPlaneIcp
impl PointCloudRegistration for PointToPlaneIcp
§fn align(
&self,
source: &PointCloud,
target: &PointCloud,
) -> Result<RegistrationResult, SpatialError>
fn align( &self, source: &PointCloud, target: &PointCloud, ) -> Result<RegistrationResult, SpatialError>
Aligns
source to target and returns the estimated transform.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