diff --git a/src/ldrp/perception.cpp b/src/ldrp/perception.cpp index 987fac1..a4eab91 100644 --- a/src/ldrp/perception.cpp +++ b/src/ldrp/perception.cpp @@ -112,9 +112,9 @@ namespace util { PerceptionNode::PerceptionNode() : rclcpp::Node("perception_node") { RCLCPP_INFO(this->get_logger(), "Perception Node Initialization!"); // setup subs/pubs - this->scan_sub = this->create_subscription("scan", 1, // gets remapped when using launchfile + this->scan_sub = this->create_subscription("/filtered_cloud", 1, // gets remapped when using launchfile std::bind(&PerceptionNode::scan_cb, this, std::placeholders::_1)); - this->pose_sub = this->create_subscription("pose", 1, // ^ + this->pose_sub = this->create_subscription("/adjusted_pose", 1, // ^ std::bind(&PerceptionNode::pose_cb, this, std::placeholders::_1)); this->grid_pub = this->create_publisher("/ldrp/obstacle_grid", 1);