#point #processing #3d #clouds

epoint

Library for processing 3D point clouds

2 releases

0.0.1-alpha.4 Aug 5, 2024
0.0.1-alpha.3 Jul 9, 2024

#2 in #clouds

Download history 119/week @ 2024-07-07 26/week @ 2024-07-14 139/week @ 2024-08-04 30/week @ 2024-08-11 15/week @ 2024-08-18 25/week @ 2024-08-25 20/week @ 2024-09-01 7/week @ 2024-09-08

73 downloads per month
Used in 7 crates (4 directly)

MIT/Apache

135KB
3K SLoC

epoint

Library for processing 3D point clouds.

The library is at an early stage of development.

Contributing

The library is developed at the TUM Chair of Geoinformatics and contributions are highly welcome.


lib.rs:

epoint is a library for processing 3D point clouds.

Overview

Data structure

For serializing a point cloud, this data structure is used:

  • point_cloud_name.tar (uncompressed as tarball) or point_cloud_name.epoint (compressed)
    • point_data.xyz (uncompressed) or point_data.parquet (compressed)
      • mandatory fields:
        • x [f64]: X coordinate
        • y [f64]: Y coordinate
        • z [f64]: Z coordinate
      • optional fields: Timestamp, unique id, color
        • id [u64]: Identifier for an individual point
        • frame_id [String]: Coordinate frame the point is defined in
        • timestamp_sec [i64]: UNIX timestamp: non-leap seconds since January 1, 1970 0:00:00 UTC
        • timestamp_nanosec [u32]: Nanoseconds since the last whole non-leap second
        • intensity [f32]: Representation of the pulse return magnitude
          • ROS uses [f32] and is thus preferred
          • LAS uses [u16]
          • PDAL uses [u16]
        • beam_origin_x [f64]: Beam origin X coordinate of current laser shot
        • beam_origin_y [f64]: Beam origin Y coordinate of current laser shot
        • beam_origin_z [f64]: Beam origin Z coordinate of current laser shot
        • color_red [u16]: Red image channel value
        • color_green [u16]: Green image channel value
        • color_blue [u16]: Blue image channel value
    • info.json (uncompressed) or info.json.zst (compressed)
      • mandatory fields:
      • optional fields:
        • frame_id [String]: Coordinate frame valid for all points (point data must not contain a frame_id column then)
    • ecoord.json (uncompressed) or ecoord.json.zst (compressed)
      • contains a transformation tree with validity durations
      • information: srid
      • purpose: Translate and rotate the point cloud without reading/writing the point data

Data structure

To simplify the interoperability to other systems or formats, the field names try to follow:

Dependencies

~49–81MB
~1.5M SLoC