threecrate-algorithms 0.1.0

Algorithms for 3D point cloud and mesh processing
Documentation
1
2
3
4
5
6
7
8
9
//! Filtering algorithms

use threecrate_core::{PointCloud, Result, Point3f};

/// Voxel grid filtering
pub fn voxel_grid_filter(_cloud: &PointCloud<Point3f>, _voxel_size: f32) -> Result<PointCloud<Point3f>> {
    // TODO: Implement voxel grid filtering
    todo!("Voxel grid filtering not yet implemented")
}