Nav2 Navigation Stack - lyrical  lyrical
ROS 2 Navigation Stack
obstacle_layer.hpp
1 /*********************************************************************
2  *
3  * Software License Agreement (BSD License)
4  *
5  * Copyright (c) 2008, 2013, Willow Garage, Inc.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of Willow Garage, Inc. nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  *
35  * Author: Eitan Marder-Eppstein
36  * David V. Lu!!
37  *********************************************************************/
38 #ifndef NAV2_COSTMAP_2D__OBSTACLE_LAYER_HPP_
39 #define NAV2_COSTMAP_2D__OBSTACLE_LAYER_HPP_
40 
41 #include <memory>
42 #include <string>
43 #include <vector>
44 
45 #include "rclcpp/rclcpp.hpp"
46 #include "rclcpp/version.h"
47 #include "laser_geometry/laser_geometry.hpp"
48 #include "nav2_ros_common/tf2_factories.hpp"
49 
50 #include "message_filters/subscriber.hpp"
51 #include "point_cloud_transport/subscriber_filter.hpp"
52 
53 #include "nav_msgs/msg/occupancy_grid.hpp"
54 #include "sensor_msgs/msg/laser_scan.hpp"
55 #include "sensor_msgs/msg/point_cloud.hpp"
56 #include "sensor_msgs/msg/point_cloud2.hpp"
57 #include "nav2_costmap_2d/costmap_layer.hpp"
58 #include "nav2_costmap_2d/layered_costmap.hpp"
59 #include "nav2_costmap_2d/observation_buffer.hpp"
60 #include "nav2_costmap_2d/footprint.hpp"
61 
62 namespace nav2_costmap_2d
63 {
64 
70 {
71 public:
76  {
77  costmap_ = NULL; // this is the unsigned char* member of parent class Costmap2D.
78  }
79 
83  virtual ~ObstacleLayer();
87  virtual void onInitialize();
98  virtual void updateBounds(
99  double robot_x, double robot_y, double robot_yaw, double * min_x,
100  double * min_y,
101  double * max_x,
102  double * max_y);
111  virtual void updateCosts(
112  nav2_costmap_2d::Costmap2D & master_grid,
113  int min_i, int min_j, int max_i, int max_j);
114 
118  virtual void deactivate();
119 
123  virtual void activate();
124 
128  virtual void reset();
129 
133  virtual bool isClearable() {return true;}
134 
143  rcl_interfaces::msg::SetParametersResult validateParameterUpdatesCallback(
144  const std::vector<rclcpp::Parameter> & parameters);
145 
152  void updateParametersCallback(const std::vector<rclcpp::Parameter> & parameters);
153 
158 
164  void laserScanCallback(
165  sensor_msgs::msg::LaserScan::ConstSharedPtr message,
166  const std::shared_ptr<nav2_costmap_2d::ObservationBuffer> & buffer);
167 
174  sensor_msgs::msg::LaserScan::ConstSharedPtr message,
175  const std::shared_ptr<nav2_costmap_2d::ObservationBuffer> & buffer);
176 
182  void pointCloud2Callback(
183  sensor_msgs::msg::PointCloud2::ConstSharedPtr message,
184  const std::shared_ptr<nav2_costmap_2d::ObservationBuffer> & buffer);
185 
186  // for testing purposes
187  void addStaticObservation(nav2_costmap_2d::Observation obs, bool marking, bool clearing);
188  void clearStaticObservations(bool marking, bool clearing);
189 
190 protected:
197  std::vector<nav2_costmap_2d::Observation::ConstSharedPtr> & marking_observations) const;
198 
205  std::vector<nav2_costmap_2d::Observation::ConstSharedPtr> & clearing_observations) const;
206 
215  virtual void raytraceFreespace(
216  const nav2_costmap_2d::Observation & clearing_observation,
217  double * min_x, double * min_y,
218  double * max_x,
219  double * max_y);
220 
225  double ox, double oy, double wx, double wy, double max_range, double min_range,
226  double * min_x, double * min_y,
227  double * max_x,
228  double * max_y);
229 
230  std::vector<geometry_msgs::msg::Point> transformed_footprint_;
231  bool footprint_clearing_enabled_;
235  void updateFootprint(
236  double robot_x, double robot_y, double robot_yaw, double * min_x,
237  double * min_y,
238  double * max_x,
239  double * max_y);
240 
241  std::string global_frame_;
244 
246  laser_geometry::LaserProjection projector_;
248  #if RCLCPP_VERSION_GTE(29, 6, 0)
249  std::vector<std::shared_ptr<message_filters::SubscriberBase>>
251  #else
252  std::vector<std::shared_ptr<message_filters::SubscriberBase<rclcpp_lifecycle::LifecycleNode>>>
254  #endif
256  std::vector<std::shared_ptr<tf2_ros::MessageFilterBase>> observation_notifiers_;
258  std::vector<std::shared_ptr<nav2_costmap_2d::ObservationBuffer>> observation_buffers_;
260  std::vector<std::shared_ptr<nav2_costmap_2d::ObservationBuffer>> marking_buffers_;
262  std::vector<std::shared_ptr<nav2_costmap_2d::ObservationBuffer>> clearing_buffers_;
263 
265  rclcpp::node_interfaces::PostSetParametersCallbackHandle::SharedPtr post_set_params_handler_;
266  rclcpp::node_interfaces::OnSetParametersCallbackHandle::SharedPtr on_set_params_handler_;
267 
268  // Used only for testing purposes
269  std::vector<nav2_costmap_2d::Observation::ConstSharedPtr> static_clearing_observations_;
270  std::vector<nav2_costmap_2d::Observation::ConstSharedPtr> static_marking_observations_;
271 
272  bool rolling_window_;
273  bool was_reset_;
274  nav2_costmap_2d::CombinationMethod combination_method_;
275  bool allow_parameter_qos_overrides_;
276 };
277 
278 } // namespace nav2_costmap_2d
279 
280 #endif // NAV2_COSTMAP_2D__OBSTACLE_LAYER_HPP_
A 2D costmap provides a mapping between points in the world and their associated "costs".
Definition: costmap_2d.hpp:69
A costmap layer base class for costmap plugin layers. Rather than just a layer, this object also cont...
Stores an observation in terms of a point cloud and the origin of the source.
Definition: observation.hpp:47
Takes in laser and pointcloud data to populate into 2D costmap.
void pointCloud2Callback(sensor_msgs::msg::PointCloud2::ConstSharedPtr message, const std::shared_ptr< nav2_costmap_2d::ObservationBuffer > &buffer)
A callback to handle buffering PointCloud2 messages.
virtual bool isClearable()
If clearing operations should be processed on this layer or not.
std::vector< std::shared_ptr< nav2_costmap_2d::ObservationBuffer > > marking_buffers_
Used to store observation buffers used for marking obstacles.
virtual void activate()
Activate the layer.
std::vector< std::shared_ptr< tf2_ros::MessageFilterBase > > observation_notifiers_
Used to make sure that transforms are available for each sensor.
std::string global_frame_
The global frame for the costmap.
void updateRaytraceBounds(double ox, double oy, double wx, double wy, double max_range, double min_range, double *min_x, double *min_y, double *max_x, double *max_y)
Process update costmap with raytracing the window bounds.
void laserScanCallback(sensor_msgs::msg::LaserScan::ConstSharedPtr message, const std::shared_ptr< nav2_costmap_2d::ObservationBuffer > &buffer)
A callback to handle buffering LaserScan messages.
bool getMarkingObservations(std::vector< nav2_costmap_2d::Observation::ConstSharedPtr > &marking_observations) const
Get the observations used to mark space.
void resetBuffersLastUpdated()
triggers the update of observations buffer
bool getClearingObservations(std::vector< nav2_costmap_2d::Observation::ConstSharedPtr > &clearing_observations) const
Get the observations used to clear space.
rclcpp::node_interfaces::PostSetParametersCallbackHandle::SharedPtr post_set_params_handler_
Dynamic parameters handler.
std::vector< std::shared_ptr< nav2_costmap_2d::ObservationBuffer > > clearing_buffers_
Used to store observation buffers used for clearing obstacles.
void laserScanValidInfCallback(sensor_msgs::msg::LaserScan::ConstSharedPtr message, const std::shared_ptr< nav2_costmap_2d::ObservationBuffer > &buffer)
A callback to handle buffering LaserScan messages which need filtering to turn Inf values into range_...
std::vector< std::shared_ptr< message_filters::SubscriberBase< rclcpp_lifecycle::LifecycleNode > > > observation_subscribers_
Used for the observation message filters.
void updateFootprint(double robot_x, double robot_y, double robot_yaw, double *min_x, double *min_y, double *max_x, double *max_y)
Clear costmap layer info below the robot's footprint.
rcl_interfaces::msg::SetParametersResult validateParameterUpdatesCallback(const std::vector< rclcpp::Parameter > &parameters)
Validate incoming parameter updates before applying them. This callback is triggered when one or more...
virtual void deactivate()
Deactivate the layer.
virtual void updateCosts(nav2_costmap_2d::Costmap2D &master_grid, int min_i, int min_j, int max_i, int max_j)
Update the costs in the master costmap in the window.
virtual ~ObstacleLayer()
A destructor.
std::vector< std::shared_ptr< nav2_costmap_2d::ObservationBuffer > > observation_buffers_
Used to store observations from various sensors.
virtual void onInitialize()
Initialization process of layer on startup.
double min_obstacle_height_
Max Obstacle Height.
laser_geometry::LaserProjection projector_
Used to project laser scans into point clouds.
double max_obstacle_height_
Max Obstacle Height.
virtual void reset()
Reset this costmap.
virtual void raytraceFreespace(const nav2_costmap_2d::Observation &clearing_observation, double *min_x, double *min_y, double *max_x, double *max_y)
Clear freespace based on one observation.
void updateParametersCallback(const std::vector< rclcpp::Parameter > &parameters)
Apply parameter updates after validation This callback is executed when parameters have been successf...
virtual void updateBounds(double robot_x, double robot_y, double robot_yaw, double *min_x, double *min_y, double *max_x, double *max_y)
Update the bounds of the master costmap by this layer's update dimensions.