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
//! Input/Output operations for point clouds
//!
//! This module provides functionality for reading and writing point clouds
//! in various formats including PCD, PLY, and LAS.

pub mod las;
pub mod pcd;
pub mod ply;

// Re-export commonly used functions
pub use las::{load_las, save_las};
pub use pcd::{load_pcd, save_pcd};
pub use ply::{load_ply, save_ply};