pub struct GroundSegmentation {
pub ground: PointCloud,
pub non_ground: PointCloud,
pub labeled: PointCloud,
pub ground_count: usize,
}Expand description
Result of ground segmentation.
Fields§
§ground: PointCloudPoints classified as ground.
non_ground: PointCloudPoints classified as non-ground (objects, vegetation, structures).
labeled: PointCloudInput cloud with a label field (1 = ground, 0 = non-ground).
ground_count: usizeNumber of ground points.
Trait Implementations§
Source§impl Clone for GroundSegmentation
impl Clone for GroundSegmentation
Source§fn clone(&self) -> GroundSegmentation
fn clone(&self) -> GroundSegmentation
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 GroundSegmentation
impl Debug for GroundSegmentation
Source§impl PartialEq for GroundSegmentation
impl PartialEq for GroundSegmentation
impl StructuralPartialEq for GroundSegmentation
Auto Trait Implementations§
impl Freeze for GroundSegmentation
impl RefUnwindSafe for GroundSegmentation
impl Send for GroundSegmentation
impl Sync for GroundSegmentation
impl Unpin for GroundSegmentation
impl UnsafeUnpin for GroundSegmentation
impl UnwindSafe for GroundSegmentation
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