Skip to main content

PointCloudFilter

Trait PointCloudFilter 

Source
pub trait PointCloudFilter {
    // Required methods
    fn name(&self) -> &'static str;
    fn filter(&self, input: &PointCloud) -> SpatialResult<PointCloud>;
}
Expand description

Point cloud filter interface.

Required Methods§

Source

fn name(&self) -> &'static str

Human-readable filter name.

Source

fn filter(&self, input: &PointCloud) -> SpatialResult<PointCloud>

Applies the filter and returns a new point cloud.

Implementors§