|
Autoware.Auto
|
|
#include <ndt_map.hpp>
Public Types | |
| using | Voxel = StaticNDTVoxel |
| using | Config = autoware::perception::filters::voxel_grid::Config |
| using | TimePoint = std::chrono::system_clock::time_point |
| using | Point = Eigen::Vector3d |
| using | VoxelViewVector = std::vector< VoxelView< Voxel > > |
| using | VoxelGrid = NDTGrid< Voxel >::Grid |
| using | ConfigPoint = NDTGrid< Voxel >::ConfigPoint |
Public Member Functions | |
| StaticNDTMap (const Config &voxel_grid_config) | |
| void | set (const sensor_msgs::msg::PointCloud2 &msg) |
| const VoxelViewVector & | cell (const Point &pt) const |
| const VoxelViewVector & | cell (float32_t x, float32_t y, float32_t z) const |
| const std::string & | frame_id () const noexcept |
| TimePoint | stamp () const noexcept |
| bool | valid () const noexcept |
| Check if the map is valid. More... | |
| const ConfigPoint & | cell_size () const noexcept |
| std::size_t | size () const noexcept |
| VoxelGrid::const_iterator | begin () const noexcept |
| Returns an const iterator to the first element of the map. More... | |
| VoxelGrid::const_iterator | end () const noexcept |
| Returns a const iterator to one past the last element of the map. More... | |
| void | clear () noexcept |
| Clear all voxels in the map. More... | |
NDT map using StaticNDTVoxels. This class is to be used when the pointcloud messages to be inserted already have the correct format (see validate_pcl_map(...)) and represent a transformed map. No centroid/covariance computation is done during run-time.
| using autoware::localization::ndt::StaticNDTMap::Config = autoware::perception::filters::voxel_grid::Config |
| using autoware::localization::ndt::StaticNDTMap::Point = Eigen::Vector3d |
| using autoware::localization::ndt::StaticNDTMap::TimePoint = std::chrono::system_clock::time_point |
| using autoware::localization::ndt::StaticNDTMap::VoxelGrid = NDTGrid<Voxel>::Grid |
| using autoware::localization::ndt::StaticNDTMap::VoxelViewVector = std::vector<VoxelView<Voxel> > |
|
explicit |
|
noexcept |
Returns an const iterator to the first element of the map.
| const StaticNDTMap::VoxelViewVector & autoware::localization::ndt::StaticNDTMap::cell | ( | const Point & | pt | ) | const |
Lookup the cell at location.
| pt | point to lookup |
| const StaticNDTMap::VoxelViewVector & autoware::localization::ndt::StaticNDTMap::cell | ( | float32_t | x, |
| float32_t | y, | ||
| float32_t | z | ||
| ) | const |
Lookup the cell at location.
| x | x coordinate |
| y | y coordinate |
| z | z coordinate |
|
noexcept |
Get size of the cell.
|
noexcept |
Clear all voxels in the map.
|
noexcept |
Returns a const iterator to one past the last element of the map.
|
noexcept |
Get map's frame id.
| void autoware::localization::ndt::StaticNDTMap::set | ( | const sensor_msgs::msg::PointCloud2 & | msg | ) |
Set point cloud message representing the map to the map representation instance. Map is assumed to have correct format (see validate_pcl_map(...)) and was generated by a dense map representation with identical configuration to this representation.
| msg | PointCloud2 message to add. Each point in this cloud should correspond to a single voxel in the underlying voxel grid. This is checked via the cell_id field in the pcl message which is expected to be equal to the voxel grid ID in the map's voxel grid. Since the grid's index will be a long value to avoid overflows, cell_id field should be an array of 2 unsigned integers. That is because there is no direct long support as a PointField. |
|
noexcept |
Get size of the map
|
noexcept |
Get map's time stamp.
|
noexcept |
Check if the map is valid.