pub struct RansacPlaneSegmentation {
pub model: PlaneModel,
pub inliers: PointCloud,
pub outliers: PointCloud,
pub inlier_count: usize,
}Expand description
Result of RANSAC plane segmentation.
Fields§
§model: PlaneModelFitted plane model refined from inliers.
inliers: PointCloudPoints classified as inliers.
outliers: PointCloudPoints classified as outliers.
inlier_count: usizeNumber of inlier points.
Trait Implementations§
Source§impl Clone for RansacPlaneSegmentation
impl Clone for RansacPlaneSegmentation
Source§fn clone(&self) -> RansacPlaneSegmentation
fn clone(&self) -> RansacPlaneSegmentation
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 Debug for RansacPlaneSegmentation
impl Debug for RansacPlaneSegmentation
Source§impl PartialEq for RansacPlaneSegmentation
impl PartialEq for RansacPlaneSegmentation
impl StructuralPartialEq for RansacPlaneSegmentation
Auto Trait Implementations§
impl Freeze for RansacPlaneSegmentation
impl RefUnwindSafe for RansacPlaneSegmentation
impl Send for RansacPlaneSegmentation
impl Sync for RansacPlaneSegmentation
impl Unpin for RansacPlaneSegmentation
impl UnsafeUnpin for RansacPlaneSegmentation
impl UnwindSafe for RansacPlaneSegmentation
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