Hi,
I am testing the Isaac ROS CenterPose quickstart on Jetson Thor with Isaac ROS 4.5.
sudo apt-get install -y ros-jazzy-isaac-ros-centerpose
sudo apt-get install -y ros-jazzy-isaac-ros-examples
I followed the official CenterPose example without modifying the source code:
ros2 launch isaac_ros_examples isaac_ros_examples.launch.py \
launch_fragments:=centerpose,centerpose_visualizer \
interface_specs_file:=${ISAAC_ROS_WS}/isaac_ros_assets/isaac_ros_centerpose/quickstart_interface_specs.json \
model_name:=centerpose_shoe \
model_repository_paths:=[${ISAAC_ROS_WS}/isaac_ros_assets/models/triton]
Then I played the provided rosbag:
ros2 bag play -l ${ISAAC_ROS_WS}/isaac_ros_assets/isaac_ros_centerpose/quickstart.bag
and visualized the result using:
ros2 run rqt_image_view rqt_image_view /centerpose/image_visualized
The CenterPose detection itself seems to work correctly. The 3D bounding boxes are displayed around the shoes, as shown in the first attached image.
However, the XYZ pose axes are not displayed.
I also tested the same CenterPose example previously on an AGX platform with Isaac ROS 3.2, without modifying the CenterPose code. In that setup, both the 3D bounding boxes and the RGB XYZ pose axes were displayed correctly, as shown in the second attached image.
Isaac ROS 4.5 on Thor:
- CenterPose detection works
- 3D bounding boxes are displayed
- Pose axes are not displayed
Isaac ROS 3.2 on AGX:
- CenterPose detection works
- 3D bounding boxes are displayed
- Pose axes are displayed correctly
According to the Isaac ROS 4.5 documentation, CenterPoseVisualizerNode still has the show_axes parameter, and its default value is true.
Is there any known change or issue in CenterPoseVisualizerNode between Isaac ROS 3.2 and 4.5, especially on Jetson Thor, that could cause the pose axes not to be rendered?
Is there any additional parameter or configuration required in Isaac ROS 4.5 to enable the axes?
Thank you.

