ferrum_cloud 0.1.0

Pure Rust implementation of Point Cloud Library (PCL).
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Spatial search structures and algorithms
//!
//! This module provides efficient spatial search structures for point clouds,
//! including KD-trees and octrees for nearest neighbor search.

pub mod kdtree;
pub mod octree;

// Re-export commonly used types
pub use kdtree::KdTree;
pub use octree::Octree;