pub struct MvpPipelineResult {
pub downsampled: PointCloud,
pub with_normals: PointCloud,
pub plane: RansacPlaneSegmentation,
pub clusters: EuclideanClusterResult,
pub registration: Option<RegistrationResult>,
pub output: PointCloud,
pub receipt: MvpPipelineReceipt,
}Expand description
Output of a completed MVP pipeline run.
Fields§
§downsampled: PointCloudCloud after voxel downsampling.
with_normals: PointCloudCloud with estimated normals and curvature.
plane: RansacPlaneSegmentationPlane segmentation result.
clusters: EuclideanClusterResultClustering result on plane outliers.
registration: Option<RegistrationResult>Optional ICP registration result.
output: PointCloudPrimary pipeline output (labeled cluster cloud).
receipt: MvpPipelineReceiptPer-stage execution and transfer accounting.
Trait Implementations§
Source§impl Clone for MvpPipelineResult
impl Clone for MvpPipelineResult
Source§fn clone(&self) -> MvpPipelineResult
fn clone(&self) -> MvpPipelineResult
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 MvpPipelineResult
impl Debug for MvpPipelineResult
Source§impl PartialEq for MvpPipelineResult
impl PartialEq for MvpPipelineResult
Source§fn eq(&self, other: &MvpPipelineResult) -> bool
fn eq(&self, other: &MvpPipelineResult) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for MvpPipelineResult
Auto Trait Implementations§
impl Freeze for MvpPipelineResult
impl RefUnwindSafe for MvpPipelineResult
impl Send for MvpPipelineResult
impl Sync for MvpPipelineResult
impl Unpin for MvpPipelineResult
impl UnsafeUnpin for MvpPipelineResult
impl UnwindSafe for MvpPipelineResult
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