Skip to content
Shubham Shinde edited this page Sep 11, 2022 · 8 revisions

ROS2 Missing features

1. PCL

2. Message filters

3. Lifecycle

4. Composition

  • Currently there is no method available for a component to unload itself from a container, and this has to be done via command line interface.

5. Dynamic parameters

  • No support to add parameter descriptions in YAML file. Issue
  • No support to group parameters in rqt reconfigure. Issue

6. Realsense camera node

  • In the installation instructions (in Wiki/notes section), after running the below command
$ rosdep install -i --from-path src --rosdistro $ROS_DISTRO --skip-keys=librealsense2 -y
  • we might get the following error
ERROR: the following packages/stacks could not have their rosdep keys resolved to system dependencies:
realsense2_camera: No definition of [diagnostic_updater] for OS version [focal]
realsense2_description: No definition of [xacro] for OS version [focal]
  • Working solution: manually install the packages via apt as shown below
sudo apt install ros-rolling-diagnostic-updater
sudo apt install ros-rolling-xacro
sudo apt install ros-rolling-cv-bridge      
Clone this wiki locally