pub struct PrimitiveSegmentation<M> {
pub model: M,
pub inliers: PointCloud,
pub outliers: PointCloud,
pub inlier_count: usize,
}Expand description
Result of fitting a primitive, partitioning the cloud into inliers/outliers.
Fields§
§model: MFitted model.
inliers: PointCloudPoints classified as inliers.
outliers: PointCloudPoints classified as outliers.
inlier_count: usizeNumber of inlier points.
Trait Implementations§
Source§impl<M: Clone> Clone for PrimitiveSegmentation<M>
impl<M: Clone> Clone for PrimitiveSegmentation<M>
Source§fn clone(&self) -> PrimitiveSegmentation<M>
fn clone(&self) -> PrimitiveSegmentation<M>
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 moreSource§impl<M: Debug> Debug for PrimitiveSegmentation<M>
impl<M: Debug> Debug for PrimitiveSegmentation<M>
Source§impl<M: PartialEq> PartialEq for PrimitiveSegmentation<M>
impl<M: PartialEq> PartialEq for PrimitiveSegmentation<M>
impl<M> StructuralPartialEq for PrimitiveSegmentation<M>
Auto Trait Implementations§
impl<M> Freeze for PrimitiveSegmentation<M>where
M: Freeze,
impl<M> RefUnwindSafe for PrimitiveSegmentation<M>where
M: RefUnwindSafe,
impl<M> Send for PrimitiveSegmentation<M>where
M: Send,
impl<M> Sync for PrimitiveSegmentation<M>where
M: Sync,
impl<M> Unpin for PrimitiveSegmentation<M>where
M: Unpin,
impl<M> UnsafeUnpin for PrimitiveSegmentation<M>where
M: UnsafeUnpin,
impl<M> UnwindSafe for PrimitiveSegmentation<M>where
M: UnwindSafe,
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