9#ifndef SE_MAP_INTEGRATOR_HPP
10#define SE_MAP_INTEGRATOR_HPP
34template<
typename MapT,
typename SensorT>
38 const Eigen::Isometry3f&
T_WS,
59template<
typename MapT,
typename SensorT>
60inline std::vector<se::OctantBase*>
66template<
typename MapT>
78 template<
typename SensorT>
93 template<
typename SensorT>
96 const std::vector<std::pair<Eigen::Isometry3f, Eigen::Vector3f>,
97 Eigen::aligned_allocator<std::pair<Eigen::Isometry3f, Eigen::Vector3f>>>&
102 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
112#include "impl/map_integrator_impl.hpp"
Definition map_integrator.hpp:67
void integrateDepth(const timestamp_t timestamp, const Measurements< SensorT > &measurements, std::set< const OctantBase * > *const updated_octants=nullptr)
Integrate the images in measurements captured at timestamp into the map.
void integrateRayBatch(const timestamp_t timestamp, const std::vector< std::pair< Eigen::Isometry3f, Eigen::Vector3f >, Eigen::aligned_allocator< std::pair< Eigen::Isometry3f, Eigen::Vector3f > > > &rayPoseBatch, const SensorT &sensor, std::set< const OctantBase * > *const updated_octants=nullptr)
Integrate a batch of ray images into the maps field representation.
std::vector< se::OctantBase * > frustum(MapT &map, SensorT &sensor, const se::Image< float > &depth_img, const Eigen::Isometry3f &T_WS, const float band)
Allocate frustum in band around the surface.
std::vector< se::OctantBase * > frustum(MapT &map, const SensorT &sensor, const Eigen::Isometry3f &T_WS)
Return the currently allocated Blocks that intersect the camera frustum.
Helper wrapper to allocate and de-allocate octants in the octree.
Definition bounded_vector.hpp:14