Skip to main content

spatialrust_io/pcd/
mod.rs

1//! PCD (Point Cloud Data) readers and writers.
2
3mod header;
4mod reader;
5mod schema;
6mod writer;
7
8pub use header::{PcdDataKind, PcdHeader};
9pub use reader::{read_pcd, read_pcd_file, PcdReader};
10pub use schema::{infer_field_semantic, schema_from_pcd_fields, PcdFieldSpec, PcdType};
11pub use writer::{write_pcd, write_pcd_file, PcdWriteFormat, PcdWriter};