bye_pcl_rs 0.1.0

The Point Cloud Library (PCL) is a standalone, large scale, open project for 2D/3D image and point cloud processing.Implemented in pure Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// 1. 点云结构体特性, 重新导出
pub mod point_struct_traits;
pub use point_struct_traits::traits;

// 2. 点结构体定义, 重新导出
pub mod point_types;
pub use point_types::*;

// 3. 点云结构体定义, 重新导出
pub mod point_cloud;
pub use point_cloud::PointCloud;

// 4. 点云数据头信息(元信息/metadata)
pub mod pcl_header;
pub use pcl_header::PclHeader;