rustgeomapping 0.2.9

A set of base tools that are designed to allow RGBD cameras create 2.5D heightmaps from the captured pointclouds. Primarily aimed at autonomous geotechnical feature reconstruction.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

pub mod data_types;



//Only enable depth cam features if required
#[cfg(feature = "sense")]
pub mod backend;
#[cfg(feature = "sense")]
pub mod depth_cam;
#[cfg(feature = "sense")]
pub mod computer_vision;

#[cfg(feature = "analysis")]
pub mod analysis;