pub struct EuclideanClusterResult {
pub cloud: PointCloud,
pub cluster_count: usize,
pub cluster_sizes: Vec<usize>,
}Expand description
Result of Euclidean clustering.
Fields§
§cloud: PointCloudInput points annotated with cluster labels.
cluster_count: usizeNumber of valid clusters found.
cluster_sizes: Vec<usize>Size of each cluster in label order.
Trait Implementations§
Source§impl Clone for EuclideanClusterResult
impl Clone for EuclideanClusterResult
Source§fn clone(&self) -> EuclideanClusterResult
fn clone(&self) -> EuclideanClusterResult
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 EuclideanClusterResult
impl Debug for EuclideanClusterResult
Source§impl PartialEq for EuclideanClusterResult
impl PartialEq for EuclideanClusterResult
impl StructuralPartialEq for EuclideanClusterResult
Auto Trait Implementations§
impl Freeze for EuclideanClusterResult
impl RefUnwindSafe for EuclideanClusterResult
impl Send for EuclideanClusterResult
impl Sync for EuclideanClusterResult
impl Unpin for EuclideanClusterResult
impl UnsafeUnpin for EuclideanClusterResult
impl UnwindSafe for EuclideanClusterResult
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