-
Notifications
You must be signed in to change notification settings - Fork 232
[ROS2 humble] tf_prefix parameter is not declared #279
Description
Describe the bug
A clear and concise description of what the bug is.
tf_prefix is expected to be a parameter, but it is not declared
| LIST_ENTRY(tf_prefix, "The prefix prepended to tf frame ID's", std::string, std::string()) \ |
Azure_Kinect_ROS_Driver/src/k4a_ros_device.cpp
Lines 61 to 79 in 6ffb95a
| this->declare_parameter("depth_enabled", rclcpp::ParameterValue(true)); | |
| this->declare_parameter("depth_mode", rclcpp::ParameterValue("NFOV_UNBINNED")); | |
| this->declare_parameter("color_enabled", rclcpp::ParameterValue(false)); | |
| this->declare_parameter("color_format", rclcpp::ParameterValue("bgra")); | |
| this->declare_parameter("color_resolution", rclcpp::ParameterValue("720P")); | |
| this->declare_parameter("fps", rclcpp::ParameterValue(5)); | |
| this->declare_parameter("point_cloud", rclcpp::ParameterValue(true)); | |
| this->declare_parameter("rgb_point_cloud", rclcpp::ParameterValue(false)); | |
| this->declare_parameter("point_cloud_in_depth_frame", rclcpp::ParameterValue(true)); | |
| this->declare_parameter("sensor_sn", rclcpp::ParameterValue("")); | |
| this->declare_parameter("recording_file", rclcpp::ParameterValue("")); | |
| this->declare_parameter("recording_loop_enabled", rclcpp::ParameterValue(false)); | |
| this->declare_parameter("body_tracking_enabled", rclcpp::ParameterValue(false)); | |
| this->declare_parameter("body_tracking_smoothing_factor", rclcpp::ParameterValue(0.0f)); | |
| this->declare_parameter("rescale_ir_to_mono8", rclcpp::ParameterValue(false)); | |
| this->declare_parameter("ir_mono8_scaling_factor", rclcpp::ParameterValue(1.0f)); | |
| this->declare_parameter("imu_rate_target", rclcpp::ParameterValue(0)); | |
| this->declare_parameter("wired_sync_mode", rclcpp::ParameterValue(0)); | |
| this->declare_parameter("subordinate_delay_off_master_usec", rclcpp::ParameterValue(0)); |
To Reproduce
Steps to reproduce the behavior:
- Go to '...'
- Click on '....'
- Scroll down to '....'
- See error
Expected behavior
A clear and concise description of what you expected to happen.
Logs
Please provide relevant logs to help diagnose your issue. To assist in debugging, please enable info level logging of the Azure Kinect Sensor SDK and attach any logs you have to this issue.
See k4atypes.h for how to enable logs.
Please also enable DEBUG level logging of the ROS node.
See roscpp/Overview/Logging for how to enable ROS DEBUG logs.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
- OS: Ubuntu
- Version: 22.04
Additional context
Add any other context about the problem here.