pub struct FpfhRansacRegistration { /* private fields */ }Expand description
FPFH + RANSAC global registration.
Both source and target must carry normals (e.g. from normal estimation);
FPFH is built from the angular relationships between a point’s normal and its
neighbors’ normals, so normals are mandatory.
Implementations§
Source§impl FpfhRansacRegistration
impl FpfhRansacRegistration
Sourcepub const fn new(config: FpfhRansacConfig) -> Self
pub const fn new(config: FpfhRansacConfig) -> Self
Creates a registration from config.
Sourcepub const fn config(&self) -> FpfhRansacConfig
pub const fn config(&self) -> FpfhRansacConfig
Returns the registration config.
Trait Implementations§
Source§impl Clone for FpfhRansacRegistration
impl Clone for FpfhRansacRegistration
Source§fn clone(&self) -> FpfhRansacRegistration
fn clone(&self) -> FpfhRansacRegistration
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 FpfhRansacRegistration
impl Debug for FpfhRansacRegistration
Source§impl PartialEq for FpfhRansacRegistration
impl PartialEq for FpfhRansacRegistration
Source§fn eq(&self, other: &FpfhRansacRegistration) -> bool
fn eq(&self, other: &FpfhRansacRegistration) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Copy for FpfhRansacRegistration
impl StructuralPartialEq for FpfhRansacRegistration
Auto Trait Implementations§
impl Freeze for FpfhRansacRegistration
impl RefUnwindSafe for FpfhRansacRegistration
impl Send for FpfhRansacRegistration
impl Sync for FpfhRansacRegistration
impl Unpin for FpfhRansacRegistration
impl UnsafeUnpin for FpfhRansacRegistration
impl UnwindSafe for FpfhRansacRegistration
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