PointCloudWriter

Trait PointCloudWriter 

Source
pub trait PointCloudWriter: Send + Sync {
    // Required methods
    fn write_point_cloud(
        &self,
        cloud: &PointCloud<Point3f>,
        path: &Path,
    ) -> Result<()>;
    fn format_name(&self) -> &'static str;
}
Expand description

Trait for writing point clouds to files

Required Methods§

Source

fn write_point_cloud( &self, cloud: &PointCloud<Point3f>, path: &Path, ) -> Result<()>

Write a point cloud to the given path

Source

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

Get the format name this writer handles

Implementors§