pub trait PointCloudRegistration {
// Required methods
fn name(&self) -> &'static str;
fn align(
&self,
source: &PointCloud,
target: &PointCloud,
) -> SpatialResult<RegistrationResult>;
}Expand description
Common trait for point cloud registration algorithms.
Required Methods§
Sourcefn align(
&self,
source: &PointCloud,
target: &PointCloud,
) -> SpatialResult<RegistrationResult>
fn align( &self, source: &PointCloud, target: &PointCloud, ) -> SpatialResult<RegistrationResult>
Aligns source to target and returns the estimated transform.