41 #include "nav2_costmap_2d/costmap_filters/costmap_filter.hpp"
45 #include "nav2_util/geometry_utils.hpp"
46 #include "geometry_msgs/msg/point_stamped.hpp"
48 #include "nav2_costmap_2d/cost_values.hpp"
49 #include "nav2_util/occ_grid_values.hpp"
55 : filter_info_topic_(
""), mask_topic_(
"")
67 nav2::LifecycleNode::SharedPtr node = node_.lock();
69 throw std::runtime_error{
"Failed to lock node"};
74 enabled_ = node->declare_or_get_parameter(name_ +
"." +
"enabled",
true);
77 double transform_tolerance = node->declare_or_get_parameter(name_ +
"." +
"transform_tolerance",
83 name_ +
"/toggle_filter",
86 std::placeholders::_2, std::placeholders::_3));
87 }
catch (
const std::exception & ex) {
88 RCLCPP_ERROR(logger_,
"Parameter problem: %s", ex.what());
111 double robot_x,
double robot_y,
double robot_yaw,
112 double * ,
double * ,
double * ,
double * )
118 latest_pose_.position.x = robot_x;
119 latest_pose_.position.y = robot_y;
120 latest_pose_.position.z = 0.0;
121 latest_pose_.orientation = nav2_util::geometry_utils::orientationAroundZAxis(robot_yaw);
126 int min_i,
int min_j,
int max_i,
int max_j)
132 process(master_grid, min_i, min_j, max_i, max_j, latest_pose_);
137 const std::shared_ptr<rmw_request_id_t>,
138 const std::shared_ptr<std_srvs::srv::SetBool::Request> request,
139 std::shared_ptr<std_srvs::srv::SetBool::Response> response)
141 enabled_ = request->data;
142 response->success =
true;
144 response->message =
"Enabled";
146 response->message =
"Disabled";
151 const std::string global_frame,
152 const geometry_msgs::msg::Pose & global_pose,
153 const std::string mask_frame,
154 geometry_msgs::msg::Pose & mask_pose)
const
156 if (mask_frame != global_frame) {
160 geometry_msgs::msg::TransformStamped transform;
161 geometry_msgs::msg::PointStamped in, out;
162 in.header.stamp = clock_->now();
163 in.header.frame_id = global_frame;
164 in.point.x = global_pose.position.x;
165 in.point.y = global_pose.position.y;
170 }
catch (tf2::TransformException & ex) {
171 RCLCPP_ERROR_THROTTLE(
172 logger_, *(clock_), 2000,
173 "CostmapFilter: failed to get costmap frame (%s) "
174 "transformation to mask frame (%s) with error: %s",
175 global_frame.c_str(), mask_frame.c_str(), ex.what());
179 mask_pose = global_pose;
180 mask_pose.position.x = out.point.x;
181 mask_pose.position.y = out.point.y;
187 mask_pose = global_pose;
194 nav_msgs::msg::OccupancyGrid::ConstSharedPtr filter_mask,
195 const unsigned int mx,
const unsigned int & my)
const
197 const unsigned int index = my * filter_mask->info.width + mx;
199 const signed char data = filter_mask->data[index];
200 if (data == nav2_util::OCC_GRID_UNKNOWN) {
201 return NO_INFORMATION;
206 static_cast<double>(data) * (LETHAL_OBSTACLE - FREE_SPACE) /
207 (nav2_util::OCC_GRID_OCCUPIED - nav2_util::OCC_GRID_FREE));
A 2D costmap provides a mapping between points in the world and their associated "costs".
virtual void process(nav2_costmap_2d::Costmap2D &master_grid, int min_i, int min_j, int max_i, int max_j, const geometry_msgs::msg::Pose &pose)=0
: An algorithm for how to use that map's information. Fills the Costmap2D with calculated data and ma...
void activate() final
Activate the layer.
std::recursive_mutex mutex_t
: Provide a typedef to ease future code maintenance
nav2::ServiceServer< std_srvs::srv::SetBool >::SharedPtr enable_service_
: A service to enable/disable costmap filter
void deactivate() final
Deactivate the layer.
bool transformPose(const std::string global_frame, const geometry_msgs::msg::Pose &global_pose, const std::string mask_frame, geometry_msgs::msg::Pose &mask_pose) const
: Transforms robot pose from current layer frame to mask frame
void reset() final
Reset the layer.
virtual void initializeFilter(const std::string &filter_info_topic)=0
: Initializes costmap filter. Creates subscriptions to filter-related topics
CostmapFilter()
A constructor.
void updateCosts(nav2_costmap_2d::Costmap2D &master_grid, int min_i, int min_j, int max_i, int max_j) final
Update the costs in the master costmap in the window.
std::string filter_info_topic_
: Name of costmap filter info topic
virtual void resetFilter()=0
: Resets costmap filter. Stops all subscriptions
tf2::Duration transform_tolerance_
: mask_frame->global_frame_ transform tolerance
unsigned char getMaskCost(nav_msgs::msg::OccupancyGrid::ConstSharedPtr filter_mask, const unsigned int mx, const unsigned int &my) const
Get the cost of a cell in the filter mask.
void onInitialize() final
Initialization process of layer on startup.
void enableCallback(const std::shared_ptr< rmw_request_id_t > request_header, const std::shared_ptr< std_srvs::srv::SetBool::Request > request, std::shared_ptr< std_srvs::srv::SetBool::Response > response)
Costmap filter enabling/disabling callback.
~CostmapFilter()
A destructor.
void updateBounds(double robot_x, double robot_y, double robot_yaw, double *min_x, double *min_y, double *max_x, double *max_y) override
Update the bounds of the master costmap by this layer's update dimensions.
void setCurrent(bool current)
Set whether the data in the layer is up to date.