Struct MvpIcpConfig
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§
§impl Clone for MvpIcpConfig
impl Clone for MvpIcpConfig
§fn clone(&self) -> MvpIcpConfig
fn clone(&self) -> MvpIcpConfig
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 MvpIcpConfig
impl Debug for MvpIcpConfig
§impl Default for MvpIcpConfig
impl Default for MvpIcpConfig
§fn default() -> MvpIcpConfig
fn default() -> MvpIcpConfig
Returns the “default value” for a type. Read more
§impl PartialEq for MvpIcpConfig
impl PartialEq for MvpIcpConfig
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