diff --git a/cartographer/mapping/3d/hybrid_grid.h b/cartographer/mapping/3d/hybrid_grid.h index c9e19c6..84b296b 100644 --- a/cartographer/mapping/3d/hybrid_grid.h +++ b/cartographer/mapping/3d/hybrid_grid.h @@ -461,6 +461,10 @@ class HybridGridBase : public Grid { // A grid containing probability values stored using 15 bits, and an update // marker per voxel. +// Points are expected to be close to the origin. Points far from the origin +// require the grid to grow dynamically. For centimeter resolution, points +// can only be tens of meters from the origin. +// The hard limit of cell indexes is +/- 8192 around the origin. class HybridGrid : public HybridGridBase { public: explicit HybridGrid(const float resolution)