Skip to main content

spatialrust_segmentation/
segmenter.rs

1/// Common trait for point cloud segmentation algorithms.
2pub trait PointCloudSegmenter {
3    /// Human-readable segmenter name.
4    fn name(&self) -> &'static str;
5}