moveit2
The MoveIt Motion Planning Framework for ROS 2.
Loading...
Searching...
No Matches
pointcloud_octomap_updater.cpp
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: Jon Binney, Ioan Sucan */
36
37#include <cmath>
40#include <tf2_geometry_msgs/tf2_geometry_msgs.hpp>
41#include <tf2/LinearMath/Vector3.h>
42#include <tf2/LinearMath/Transform.h>
43#include <sensor_msgs/point_cloud2_iterator.hpp>
44#include <tf2_ros/create_timer_interface.h>
45#include <tf2_ros/create_timer_ros.h>
47#include <rclcpp/version.h>
48
49#include <memory>
50
52{
54 : OccupancyMapUpdater("PointCloudUpdater")
55 , scale_(1.0)
56 , padding_(0.0)
57 , max_range_(std::numeric_limits<double>::infinity())
58 , point_subsample_(1)
59 , max_update_rate_(0)
60 , point_cloud_subscriber_(nullptr)
61 , point_cloud_filter_(nullptr)
62 , logger_(moveit::getLogger("moveit.ros.pointcloud_octomap_updater"))
63{
64}
65
66bool PointCloudOctomapUpdater::setParams(const std::string& name_space)
67{
68 // This parameter is optional
69 node_->get_parameter_or(name_space + ".ns", ns_, std::string());
70 return node_->get_parameter(name_space + ".point_cloud_topic", point_cloud_topic_) &&
71 node_->get_parameter(name_space + ".max_range", max_range_) &&
72 node_->get_parameter(name_space + ".padding_offset", padding_) &&
73 node_->get_parameter(name_space + ".padding_scale", scale_) &&
74 node_->get_parameter(name_space + ".point_subsample", point_subsample_) &&
75 node_->get_parameter(name_space + ".max_update_rate", max_update_rate_) &&
76 node_->get_parameter(name_space + ".filtered_cloud_topic", filtered_cloud_topic_);
77}
78
79bool PointCloudOctomapUpdater::initialize(const rclcpp::Node::SharedPtr& node)
80{
81 node_ = node;
82 tf_buffer_ = std::make_shared<tf2_ros::Buffer>(node_->get_clock());
83 auto create_timer_interface =
84 std::make_shared<tf2_ros::CreateTimerROS>(node->get_node_base_interface(), node->get_node_timers_interface());
85 tf_buffer_->setCreateTimerInterface(create_timer_interface);
86 tf_listener_ = std::make_shared<tf2_ros::TransformListener>(*tf_buffer_);
87 shape_mask_ = std::make_unique<point_containment_filter::ShapeMask>();
88 shape_mask_->setTransformCallback(
89 [this](ShapeHandle shape, Eigen::Isometry3d& tf) { return getShapeTransform(shape, tf); });
90
91 return true;
92}
93
95{
96 std::string prefix = "";
97 if (!ns_.empty())
98 prefix = ns_ + "/";
99
100 if (!filtered_cloud_topic_.empty())
101 {
102 filtered_cloud_publisher_ =
103 node_->create_publisher<sensor_msgs::msg::PointCloud2>(prefix + filtered_cloud_topic_, rclcpp::SensorDataQoS());
104 }
105
106 if (point_cloud_subscriber_)
107 return;
108 /* subscribe to point cloud topic using tf filter*/
109 point_cloud_subscriber_ = new message_filters::Subscriber<sensor_msgs::msg::PointCloud2>(node_, point_cloud_topic_,
110#if RCLCPP_VERSION_GTE(28, 3, 0)
111 rclcpp::SensorDataQoS());
112#else
113 rmw_qos_profile_sensor_data);
114#endif
115 if (tf_listener_ && tf_buffer_ && !monitor_->getMapFrame().empty())
116 {
117 point_cloud_filter_ = new tf2_ros::MessageFilter<sensor_msgs::msg::PointCloud2>(
118 *point_cloud_subscriber_, *tf_buffer_, monitor_->getMapFrame(), 5, node_);
119 point_cloud_filter_->registerCallback(
120 [this](const sensor_msgs::msg::PointCloud2::ConstSharedPtr& cloud) { cloudMsgCallback(cloud); });
121 RCLCPP_INFO(logger_, "Listening to '%s' using message filter with target frame '%s'", point_cloud_topic_.c_str(),
122 point_cloud_filter_->getTargetFramesString().c_str());
123 }
124 else
125 {
126 point_cloud_subscriber_->registerCallback(
127 [this](const sensor_msgs::msg::PointCloud2::ConstSharedPtr& cloud) { cloudMsgCallback(cloud); });
128 RCLCPP_INFO(logger_, "Listening to '%s'", point_cloud_topic_.c_str());
129 }
130}
131
133{
134 delete point_cloud_filter_;
135 delete point_cloud_subscriber_;
136 point_cloud_filter_ = nullptr;
137 point_cloud_subscriber_ = nullptr;
138}
139
140ShapeHandle PointCloudOctomapUpdater::excludeShape(const shapes::ShapeConstPtr& shape)
141{
142 ShapeHandle h = 0;
143 if (shape_mask_)
144 {
145 h = shape_mask_->addShape(shape, scale_, padding_);
146 }
147 else
148 {
149 RCLCPP_ERROR(logger_, "Shape filter not yet initialized!");
150 }
151 return h;
152}
153
155{
156 if (shape_mask_)
157 shape_mask_->removeShape(handle);
158}
159
160bool PointCloudOctomapUpdater::getShapeTransform(ShapeHandle h, Eigen::Isometry3d& transform) const
161{
162 ShapeTransformCache::const_iterator it = transform_cache_.find(h);
163 if (it != transform_cache_.end())
164 {
165 transform = it->second;
166 }
167 return it != transform_cache_.end();
168}
169
170void PointCloudOctomapUpdater::updateMask(const sensor_msgs::msg::PointCloud2& /*cloud*/,
171 const Eigen::Vector3d& /*sensor_origin*/, std::vector<int>& /*mask*/)
172{
173}
174
175void PointCloudOctomapUpdater::cloudMsgCallback(const sensor_msgs::msg::PointCloud2::ConstSharedPtr& cloud_msg)
176{
177 RCLCPP_DEBUG(logger_, "Received a new point cloud message");
178 rclcpp::Time start = rclcpp::Clock(RCL_ROS_TIME).now();
179
180 if (max_update_rate_ > 0)
181 {
182 // ensure we are not updating the octomap representation too often
183 if ((node_->now() - last_update_time_) <= rclcpp::Duration::from_seconds(1.0 / max_update_rate_))
184 return;
185 last_update_time_ = node_->now();
186 }
187
188 if (monitor_->getMapFrame().empty())
189 monitor_->setMapFrame(cloud_msg->header.frame_id);
190
191 /* get transform for cloud into map frame */
192 tf2::Stamped<tf2::Transform> map_h_sensor;
193 if (monitor_->getMapFrame() == cloud_msg->header.frame_id)
194 {
195 map_h_sensor.setIdentity();
196 }
197 else
198 {
199 if (tf_buffer_)
200 {
201 try
202 {
203 tf2::fromMsg(tf_buffer_->lookupTransform(monitor_->getMapFrame(), cloud_msg->header.frame_id,
204 cloud_msg->header.stamp),
205 map_h_sensor);
206 }
207 catch (tf2::TransformException& ex)
208 {
209 RCLCPP_ERROR_STREAM(logger_, "Transform error of sensor data: " << ex.what() << "; quitting callback");
210 return;
211 }
212 }
213 else
214 return;
215 }
216
217 /* compute sensor origin in map frame */
218 const tf2::Vector3& sensor_origin_tf = map_h_sensor.getOrigin();
219 octomap::point3d sensor_origin(sensor_origin_tf.getX(), sensor_origin_tf.getY(), sensor_origin_tf.getZ());
220 Eigen::Vector3d sensor_origin_eigen(sensor_origin_tf.getX(), sensor_origin_tf.getY(), sensor_origin_tf.getZ());
221
222 if (!updateTransformCache(cloud_msg->header.frame_id, cloud_msg->header.stamp))
223 return;
224
225 /* mask out points on the robot */
226 shape_mask_->maskContainment(*cloud_msg, sensor_origin_eigen, 0.0, max_range_, mask_);
227 updateMask(*cloud_msg, sensor_origin_eigen, mask_);
228
229 octomap::KeySet free_cells, occupied_cells, model_cells, clip_cells;
230 std::unique_ptr<sensor_msgs::msg::PointCloud2> filtered_cloud;
231
232 // We only use these iterators if we are creating a filtered_cloud for
233 // publishing. We cannot default construct these, so we use unique_ptr's
234 // to defer construction
235 std::unique_ptr<sensor_msgs::PointCloud2Iterator<float>> iter_filtered_x;
236 std::unique_ptr<sensor_msgs::PointCloud2Iterator<float>> iter_filtered_y;
237 std::unique_ptr<sensor_msgs::PointCloud2Iterator<float>> iter_filtered_z;
238
239 if (!filtered_cloud_topic_.empty())
240 {
241 filtered_cloud = std::make_unique<sensor_msgs::msg::PointCloud2>();
242 filtered_cloud->header = cloud_msg->header;
243 sensor_msgs::PointCloud2Modifier pcd_modifier(*filtered_cloud);
244 pcd_modifier.setPointCloud2FieldsByString(1, "xyz");
245 pcd_modifier.resize(cloud_msg->width * cloud_msg->height);
246
247 // we have created a filtered_out, so we can create the iterators now
248 iter_filtered_x = std::make_unique<sensor_msgs::PointCloud2Iterator<float>>(*filtered_cloud, "x");
249 iter_filtered_y = std::make_unique<sensor_msgs::PointCloud2Iterator<float>>(*filtered_cloud, "y");
250 iter_filtered_z = std::make_unique<sensor_msgs::PointCloud2Iterator<float>>(*filtered_cloud, "z");
251 }
252 size_t filtered_cloud_size = 0;
253
254 tree_->lockRead();
255
256 try
257 {
258 /* do ray tracing to find which cells this point cloud indicates should be free, and which it indicates
259 * should be occupied */
260 for (unsigned int row = 0; row < cloud_msg->height; row += point_subsample_)
261 {
262 unsigned int row_c = row * cloud_msg->width;
263 sensor_msgs::PointCloud2ConstIterator<float> pt_iter(*cloud_msg, "x");
264 // set iterator to point at start of the current row
265 pt_iter += row_c;
266
267 for (unsigned int col = 0; col < cloud_msg->width; col += point_subsample_, pt_iter += point_subsample_)
268 {
269 // if (mask_[row_c + col] == point_containment_filter::ShapeMask::CLIP)
270 // continue;
271
272 /* check for NaN */
273 if (!std::isnan(pt_iter[0]) && !std::isnan(pt_iter[1]) && !std::isnan(pt_iter[2]))
274 {
275 /* occupied cell at ray endpoint if ray is shorter than max range and this point
276 isn't on a part of the robot*/
277 if (mask_[row_c + col] == point_containment_filter::ShapeMask::INSIDE)
278 {
279 // transform to map frame
280 tf2::Vector3 point_tf = map_h_sensor * tf2::Vector3(pt_iter[0], pt_iter[1], pt_iter[2]);
281 model_cells.insert(tree_->coordToKey(point_tf.getX(), point_tf.getY(), point_tf.getZ()));
282 }
283 else if (mask_[row_c + col] == point_containment_filter::ShapeMask::CLIP)
284 {
285 tf2::Vector3 clipped_point_tf =
286 map_h_sensor * (tf2::Vector3(pt_iter[0], pt_iter[1], pt_iter[2]).normalize() * max_range_);
287 clip_cells.insert(
288 tree_->coordToKey(clipped_point_tf.getX(), clipped_point_tf.getY(), clipped_point_tf.getZ()));
289 }
290 else
291 {
292 tf2::Vector3 point_tf = map_h_sensor * tf2::Vector3(pt_iter[0], pt_iter[1], pt_iter[2]);
293 occupied_cells.insert(tree_->coordToKey(point_tf.getX(), point_tf.getY(), point_tf.getZ()));
294 // build list of valid points if we want to publish them
295 if (filtered_cloud)
296 {
297 **iter_filtered_x = pt_iter[0];
298 **iter_filtered_y = pt_iter[1];
299 **iter_filtered_z = pt_iter[2];
300 ++filtered_cloud_size;
301 ++*iter_filtered_x;
302 ++*iter_filtered_y;
303 ++*iter_filtered_z;
304 }
305 }
306 }
307 }
308 }
309
310 /* compute the free cells along each ray that ends at an occupied cell */
311 for (const octomap::OcTreeKey& occupied_cell : occupied_cells)
312 {
313 if (tree_->computeRayKeys(sensor_origin, tree_->keyToCoord(occupied_cell), key_ray_))
314 free_cells.insert(key_ray_.begin(), key_ray_.end());
315 }
316
317 /* compute the free cells along each ray that ends at a model cell */
318 for (const octomap::OcTreeKey& model_cell : model_cells)
319 {
320 if (tree_->computeRayKeys(sensor_origin, tree_->keyToCoord(model_cell), key_ray_))
321 free_cells.insert(key_ray_.begin(), key_ray_.end());
322 }
323
324 /* compute the free cells along each ray that ends at a clipped cell */
325 for (const octomap::OcTreeKey& clip_cell : clip_cells)
326 {
327 if (tree_->computeRayKeys(sensor_origin, tree_->keyToCoord(clip_cell), key_ray_))
328 free_cells.insert(key_ray_.begin(), key_ray_.end());
329 }
330 }
331 catch (...)
332 {
333 tree_->unlockRead();
334 return;
335 }
336
337 tree_->unlockRead();
338
339 /* cells that overlap with the model are not occupied */
340 for (const octomap::OcTreeKey& model_cell : model_cells)
341 occupied_cells.erase(model_cell);
342
343 /* occupied cells are not free */
344 for (const octomap::OcTreeKey& occupied_cell : occupied_cells)
345 free_cells.erase(occupied_cell);
346
347 tree_->lockWrite();
348
349 try
350 {
351 /* mark free cells only if not seen occupied in this cloud */
352 for (const octomap::OcTreeKey& free_cell : free_cells)
353 tree_->updateNode(free_cell, false);
354
355 /* now mark all occupied cells */
356 for (const octomap::OcTreeKey& occupied_cell : occupied_cells)
357 tree_->updateNode(occupied_cell, true);
358
359 // set the logodds to the minimum for the cells that are part of the model
360 const float lg = tree_->getClampingThresMinLog() - tree_->getClampingThresMaxLog();
361 for (const octomap::OcTreeKey& model_cell : model_cells)
362 tree_->updateNode(model_cell, lg);
363 }
364 catch (...)
365 {
366 RCLCPP_ERROR(logger_, "Internal error while updating octree");
367 }
368 tree_->unlockWrite();
369 RCLCPP_DEBUG(logger_, "Processed point cloud in %lf ms", (node_->now() - start).seconds() * 1000.0);
370 tree_->triggerUpdateCallback();
371
372 if (filtered_cloud)
373 {
374 sensor_msgs::PointCloud2Modifier pcd_modifier(*filtered_cloud);
375 pcd_modifier.resize(filtered_cloud_size);
376 filtered_cloud_publisher_->publish(*filtered_cloud);
377 }
378}
379} // namespace occupancy_map_monitor
const std::string & getMapFrame() const
Gets the map frame (this is set either by the constor or a parameter).
void setMapFrame(const std::string &frame)
Sets the map frame.
Base class for classes which update the occupancy map.
collision_detection::OccMapTreePtr tree_
bool updateTransformCache(const std::string &target_frame, const rclcpp::Time &target_time)
bool setParams(const std::string &name_space) override
Set updater params using struct that comes from parsing a yaml string. This must be called after setM...
virtual void updateMask(const sensor_msgs::msg::PointCloud2 &cloud, const Eigen::Vector3d &sensor_origin, std::vector< int > &mask)
bool initialize(const rclcpp::Node::SharedPtr &node) override
Do any necessary setup (subscribe to ros topics, etc.). This call assumes setMonitor() and setParams(...
ShapeHandle excludeShape(const shapes::ShapeConstPtr &shape) override
Main namespace for MoveIt.
Definition exceptions.h:43