19namespace measurement {
45 std::vector<PointData>
data;
52 void copyTo(
double* buffer,
int size);
Collection of math functions.
Control the import and export of Windows DLL symbols.
Vector of length 3.
Definition Vector3.hpp:25
Stores a vector of points in 3D space.
Definition PointCloud.hpp:43
void copyTo(double *buffer, int size)
Copies the point cloud to a double buffer.
std::vector< PointData > data
Data structure of the PointCloud.
Definition PointCloud.hpp:45
Stores the data of a single point in 3d space.
Definition PointCloud.hpp:25
int user_idx
User assigned index of the sensor that measured the point.
Definition PointCloud.hpp:36
double raw_distance
Raw distance from the origin to the point.
Definition PointCloud.hpp:30
double sigma
Standard deviation associated with the points location.
Definition PointCloud.hpp:33
math::Vector3 point
Cartesian coordinates of the point.
Definition PointCloud.hpp:27