pub struct MvpIcpConfig {
pub icp: IcpConfig,
pub source_transform: Option<Isometry3<f32>>,
pub method: MvpRegistrationMethod,
}Expand description
Configuration for optional ICP in the MVP pipeline.
Fields§
§icp: IcpConfigShared registration settings (iterations, correspondence distance, thresholds).
source_transform: Option<Isometry3<f32>>Optional transform applied to the reference cloud to synthesize a source scan.
method: MvpRegistrationMethodRegistration backend to use.
Trait Implementations§
Source§impl Clone for MvpIcpConfig
impl Clone for MvpIcpConfig
Source§fn clone(&self) -> MvpIcpConfig
fn clone(&self) -> MvpIcpConfig
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 MvpIcpConfig
impl Debug for MvpIcpConfig
Source§impl Default for MvpIcpConfig
impl Default for MvpIcpConfig
Source§impl PartialEq for MvpIcpConfig
impl PartialEq for MvpIcpConfig
Source§fn eq(&self, other: &MvpIcpConfig) -> bool
fn eq(&self, other: &MvpIcpConfig) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MvpIcpConfig
Auto Trait Implementations§
impl Freeze for MvpIcpConfig
impl RefUnwindSafe for MvpIcpConfig
impl Send for MvpIcpConfig
impl Sync for MvpIcpConfig
impl Unpin for MvpIcpConfig
impl UnsafeUnpin for MvpIcpConfig
impl UnwindSafe for MvpIcpConfig
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