UFO 1.0.0
An Efficient Probabilistic 3D Mapping Framework That Embraces the Unknown
Loading...
Searching...
No Matches
map.hpp
1
42#ifndef UFO_MAP_OCCUPANCY_MAP_HPP
43#define UFO_MAP_OCCUPANCY_MAP_HPP
44
45// UFO
46#include <ufo/map/occupancy/block.hpp>
47#include <ufo/map/occupancy/detail/map.hpp>
48#include <ufo/map/occupancy/predicate.hpp>
49#include <ufo/map/occupancy/propagation_criteria.hpp>
50#include <ufo/map/occupancy/state.hpp>
51
52namespace ufo
53{
54template <class T>
57
58 template <class Derived, class Tree>
59 using Map = detail::OccupancyMap<Derived, Tree, Block>;
60};
61
65} // namespace ufo
66
67#endif // UFO_MAP_OCCUPANCY_MAP_HPP
All vision-related classes and functions.
Definition cloud.hpp:49