pub trait FeatureEstimator {
// Required methods
fn name(&self) -> &'static str;
fn estimate(&self, input: &PointCloud) -> Result<PointCloud, SpatialError>;
}Expand description
Computes point-wise features from an input point cloud.
Required Methods§
Sourcefn estimate(&self, input: &PointCloud) -> Result<PointCloud, SpatialError>
fn estimate(&self, input: &PointCloud) -> Result<PointCloud, SpatialError>
Runs feature estimation and returns an output point cloud.