supereight
Loading...
Searching...
No Matches
map_integrator.hpp
Go to the documentation of this file.
1/*
2 * SPDX-FileCopyrightText: 2021 Smart Robotics Lab, Imperial College London, Technical University of Munich
3 * SPDX-FileCopyrightText: 2021 Nils Funk
4 * SPDX-FileCopyrightText: 2021 Sotiris Papatheodorou
5 * SPDX-FileCopyrightText: 2022-2024 Simon Boche
6 * SPDX-License-Identifier: BSD-3-Clause
7 */
8
9#ifndef SE_MAP_INTEGRATOR_HPP
10#define SE_MAP_INTEGRATOR_HPP
11
17
18namespace se {
19namespace allocator {
20
34template<typename MapT, typename SensorT>
35std::vector<se::OctantBase*> frustum(MapT& map,
36 SensorT& sensor,
38 const Eigen::Isometry3f& T_WS,
39 const float band);
40
41} // namespace allocator
42
43
44
45namespace fetcher {
59template<typename MapT, typename SensorT>
60inline std::vector<se::OctantBase*>
61frustum(MapT& map, const SensorT& sensor, const Eigen::Isometry3f& T_WS);
62} // namespace fetcher
63
64
65
66template<typename MapT>
68 public:
70
78 template<typename SensorT>
79 void integrateDepth(const timestamp_t timestamp,
81 std::set<const OctantBase*>* const updated_octants = nullptr);
82
93 template<typename SensorT>
95 const timestamp_t timestamp,
96 const std::vector<std::pair<Eigen::Isometry3f, Eigen::Vector3f>,
97 Eigen::aligned_allocator<std::pair<Eigen::Isometry3f, Eigen::Vector3f>>>&
99 const SensorT& sensor,
100 std::set<const OctantBase*>* const updated_octants = nullptr);
101
102 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
103
104 private:
105 MapT& map_;
106};
107
108
109
110} // namespace se
111
112#include "impl/map_integrator_impl.hpp"
113
114#endif // SE_MAP_INTEGRATOR_HPP
Definition image.hpp:19
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.
MapIntegrator(MapT &map)
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