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