occupancy_map_updater.h
Go to the documentation of this file.
1 /*********************************************************************
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2011, Willow Garage, Inc.
5  * All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * * Redistributions of source code must retain the above copyright
12  * notice, this list of conditions and the following disclaimer.
13  * * Redistributions in binary form must reproduce the above
14  * copyright notice, this list of conditions and the following
15  * disclaimer in the documentation and/or other materials provided
16  * with the distribution.
17  * * Neither the name of Willow Garage nor the names of its
18  * contributors may be used to endorse or promote products derived
19  * from this software without specific prior written permission.
20  *
21  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
24  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
25  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
27  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
28  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
29  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
31  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
32  * POSSIBILITY OF SUCH DAMAGE.
33  *********************************************************************/
34 
35 /* Author: Ioan Sucan, Jon Binney */
36 
37 #ifndef MOVEIT_OCCUPANCY_MAP_MONITOR_OCCUPANCY_MAP_UPDATER_
38 #define MOVEIT_OCCUPANCY_MAP_MONITOR_OCCUPANCY_MAP_UPDATER_
39 
43 #include <boost/shared_ptr.hpp>
44 #include <Eigen/Core>
45 #include <Eigen/Geometry>
46 
47 namespace occupancy_map_monitor
48 {
49 typedef unsigned int ShapeHandle;
50 typedef std::map<ShapeHandle, Eigen::Affine3d, std::less<ShapeHandle>,
51  Eigen::aligned_allocator<std::pair<const ShapeHandle, Eigen::Affine3d> > >
53 typedef boost::function<bool(const std::string& target_frame, const ros::Time& target_time, ShapeTransformCache& cache)>
55 
57 
59 
63 {
64 public:
65  OccupancyMapUpdater(const std::string& type);
66  virtual ~OccupancyMapUpdater();
67 
69  void setMonitor(OccupancyMapMonitor* monitor);
70 
73  virtual bool setParams(XmlRpc::XmlRpcValue& params) = 0;
74 
77  virtual bool initialize() = 0;
78 
79  virtual void start() = 0;
80 
81  virtual void stop() = 0;
82 
83  virtual ShapeHandle excludeShape(const shapes::ShapeConstPtr& shape) = 0;
84 
85  virtual void forgetShape(ShapeHandle handle) = 0;
86 
87  const std::string& getType() const
88  {
89  return type_;
90  }
91 
92  void setTransformCacheCallback(const TransformCacheProvider& transform_callback)
93  {
94  transform_provider_callback_ = transform_callback;
95  }
96 
97  void publishDebugInformation(bool flag)
98  {
99  debug_info_ = flag;
100  }
101 
102 protected:
104  std::string type_;
109 
110  bool updateTransformCache(const std::string& target_frame, const ros::Time& target_time);
111 
112  static void readXmlParam(XmlRpc::XmlRpcValue& params, const std::string& param_name, double* value);
113  static void readXmlParam(XmlRpc::XmlRpcValue& params, const std::string& param_name, unsigned int* value);
114 };
115 }
116 
117 #endif
std::map< ShapeHandle, Eigen::Affine3d, std::less< ShapeHandle >, Eigen::aligned_allocator< std::pair< const ShapeHandle, Eigen::Affine3d > > > ShapeTransformCache
std::shared_ptr< OccMapTree > OccMapTreePtr
Base class for classes which update the occupancy map.
virtual void forgetShape(ShapeHandle handle)=0
virtual ShapeHandle excludeShape(const shapes::ShapeConstPtr &shape)=0
virtual bool initialize()=0
Do any necessary setup (subscribe to ros topics, etc.). This call assumes setMonitor() and setParams(...
void setTransformCacheCallback(const TransformCacheProvider &transform_callback)
MOVEIT_CLASS_FORWARD(OccupancyMapUpdater)
void setMonitor(OccupancyMapMonitor *monitor)
This is the first function to be called after construction.
boost::function< bool(const std::string &target_frame, const ros::Time &target_time, ShapeTransformCache &cache)> TransformCacheProvider
static void readXmlParam(XmlRpc::XmlRpcValue &params, const std::string &param_name, double *value)
bool updateTransformCache(const std::string &target_frame, const ros::Time &target_time)
virtual bool setParams(XmlRpc::XmlRpcValue &params)=0
Set updater params using struct that comes from parsing a yaml string. This must be called after setM...
std::shared_ptr< const Shape > ShapeConstPtr


perception
Author(s): Ioan Sucan , Jon Binney , Suat Gedikli
autogenerated on Sun Oct 18 2020 13:17:23