8 #ifndef SE_TYPE_UTIL_HPP 9 #define SE_TYPE_UTIL_HPP 11 #include <Eigen/Dense> 12 #include <Eigen/StdVector> 15 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector2f)
16 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector3f)
17 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector2d)
18 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Vector3d)
20 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix2f)
21 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix3f)
22 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix4f)
23 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix2d)
24 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix3d)
25 EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION(Eigen::Matrix4d)
64 #endif // SE_TYPE_UTIL_HPP unsigned int idx_t
Child or voxel index type.
Definition: type_util.hpp:48
Eigen::Matrix< field_t, 3, 1 > field_vec_t
Definition: type_util.hpp:52
uint64_t scale_t
The type of the scale in the morton code.
Definition: type_util.hpp:46
float field_t
The type of the stored field (e.g. TSDF, ESDF or occupancy)
Definition: type_util.hpp:50
uint32_t rgba_t
The type of the colour.
Definition: type_util.hpp:58
float time_stamp_t
The type of the time stamp.
Definition: type_util.hpp:56
uint64_t key_t
key = 1 bit buffer + 57 bits of morton code + 6 bits of scale information The maxium scale is limited...
Definition: type_util.hpp:44
uint64_t code_t
The type of the Morton code.
Definition: type_util.hpp:45
se::field_t weight_t
The type of the field type weight.
Definition: type_util.hpp:54
short semantics_t
The type of the semantic class.
Definition: type_util.hpp:60
Helper wrapper to allocate and de-allocate octants in the octree.
Definition: colour_utils.hpp:17