-
Notifications
You must be signed in to change notification settings - Fork 568
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: OctoMap and Filtered_Cloud Not Updating During Movement Execution (
#3209) * fix: adds MutuallyExclusive to pointcloud subscriber to allow octomap updates during motion * refactor: adjust macro for readability (cherry picked from commit 246aa58) # Conflicts: # moveit_ros/perception/pointcloud_octomap_updater/include/moveit/pointcloud_octomap_updater/pointcloud_octomap_updater.hpp # moveit_ros/perception/pointcloud_octomap_updater/src/pointcloud_octomap_updater.cpp
- Loading branch information
1 parent
f1f6173
commit 7574f1b
Showing
2 changed files
with
127 additions
and
0 deletions.
There are no files selected for viewing
113 changes: 113 additions & 0 deletions
113
..._octomap_updater/include/moveit/pointcloud_octomap_updater/pointcloud_octomap_updater.hpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,113 @@ | ||
/********************************************************************* | ||
* Software License Agreement (BSD License) | ||
* | ||
* Copyright (c) 2011, Willow Garage, Inc. | ||
* All rights reserved. | ||
* | ||
* Redistribution and use in source and binary forms, with or without | ||
* modification, are permitted provided that the following conditions | ||
* are met: | ||
* | ||
* * Redistributions of source code must retain the above copyright | ||
* notice, this list of conditions and the following disclaimer. | ||
* * Redistributions in binary form must reproduce the above | ||
* copyright notice, this list of conditions and the following | ||
* disclaimer in the documentation and/or other materials provided | ||
* with the distribution. | ||
* * Neither the name of Willow Garage nor the names of its | ||
* contributors may be used to endorse or promote products derived | ||
* from this software without specific prior written permission. | ||
* | ||
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS | ||
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT | ||
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS | ||
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE | ||
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, | ||
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; | ||
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER | ||
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT | ||
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN | ||
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
* POSSIBILITY OF SUCH DAMAGE. | ||
*********************************************************************/ | ||
|
||
/* Author: Jon Binney, Ioan Sucan */ | ||
|
||
#pragma once | ||
|
||
#include <rclcpp/rclcpp.hpp> | ||
#include <rclcpp/callback_group.hpp> | ||
#include <rclcpp/version.h> | ||
#include <tf2_ros/transform_listener.h> | ||
#include <tf2_ros/message_filter.h> | ||
#if RCLCPP_VERSION_GTE(28, 3, 3) // Rolling | ||
#include <message_filters/subscriber.hpp> | ||
#else | ||
#include <message_filters/subscriber.h> | ||
#endif | ||
#include <sensor_msgs/msg/point_cloud2.hpp> | ||
#include <moveit/occupancy_map_monitor/occupancy_map_updater.hpp> | ||
#include <moveit/point_containment_filter/shape_mask.hpp> | ||
|
||
#include <memory> | ||
|
||
namespace occupancy_map_monitor | ||
{ | ||
class PointCloudOctomapUpdater : public OccupancyMapUpdater | ||
{ | ||
public: | ||
PointCloudOctomapUpdater(); | ||
~PointCloudOctomapUpdater() override{}; | ||
|
||
bool setParams(const std::string& name_space) override; | ||
|
||
bool initialize(const rclcpp::Node::SharedPtr& node) override; | ||
void start() override; | ||
void stop() override; | ||
ShapeHandle excludeShape(const shapes::ShapeConstPtr& shape) override; | ||
void forgetShape(ShapeHandle handle) override; | ||
|
||
protected: | ||
virtual void updateMask(const sensor_msgs::msg::PointCloud2& cloud, const Eigen::Vector3d& sensor_origin, | ||
std::vector<int>& mask); | ||
|
||
private: | ||
bool getShapeTransform(ShapeHandle h, Eigen::Isometry3d& transform) const; | ||
void cloudMsgCallback(const sensor_msgs::msg::PointCloud2::ConstSharedPtr& cloud_msg); | ||
|
||
// TODO: Enable private node for publishing filtered point cloud | ||
// ros::NodeHandle root_nh_; | ||
// ros::NodeHandle private_nh_; | ||
rclcpp::Node::SharedPtr node_; | ||
|
||
std::shared_ptr<tf2_ros::Buffer> tf_buffer_; | ||
std::shared_ptr<tf2_ros::TransformListener> tf_listener_; | ||
|
||
// Initialize clock type to RCL_ROS_TIME to prevent exception about time sources mismatch | ||
rclcpp::Time last_update_time_ = rclcpp::Time(0, 0, RCL_ROS_TIME); | ||
|
||
/* params */ | ||
std::string point_cloud_topic_; | ||
double scale_; | ||
double padding_; | ||
double max_range_; | ||
unsigned int point_subsample_; | ||
double max_update_rate_; | ||
std::string filtered_cloud_topic_; | ||
std::string ns_; | ||
rclcpp::Publisher<sensor_msgs::msg::PointCloud2>::SharedPtr filtered_cloud_publisher_; | ||
|
||
message_filters::Subscriber<sensor_msgs::msg::PointCloud2>* point_cloud_subscriber_; | ||
tf2_ros::MessageFilter<sensor_msgs::msg::PointCloud2>* point_cloud_filter_; | ||
|
||
/* used to store all cells in the map which a given ray passes through during raycasting. | ||
we cache this here because it dynamically pre-allocates a lot of memory in its constructor */ | ||
octomap::KeyRay key_ray_; | ||
|
||
std::unique_ptr<point_containment_filter::ShapeMask> shape_mask_; | ||
std::vector<int> mask_; | ||
|
||
rclcpp::Logger logger_; | ||
}; | ||
} // namespace occupancy_map_monitor |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters