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
12
13
14
15
//! Point cloud processing algorithms
//!
//! This module contains various algorithms for point cloud processing,
//! including filtering, feature extraction, registration, and segmentation.

pub mod feature;
pub mod filter;
pub mod registration;
pub mod segmentation;

// Re-export commonly used algorithms
pub use feature::*;
pub use filter::*;
pub use registration::*;
pub use segmentation::*;