Skip to content

Commit

Permalink
[xsarm_perception] Fix rs_camera topics (#237)
Browse files Browse the repository at this point in the history
Fix rs_camera topics
  • Loading branch information
lukeschmitt-tr authored Jan 2, 2025
1 parent a4b7e51 commit b66d5b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ def generate_launch_description():
declared_arguments.append(
DeclareLaunchArgument(
'cloud_topic',
default_value='/camera/depth/color/points',
default_value='/camera/camera/depth/color/points',
description='the absolute ROS topic name to subscribe to raw pointcloud data.',
)
)
Expand Down Expand Up @@ -374,14 +374,14 @@ def generate_launch_description():
declared_arguments.append(
DeclareLaunchArgument(
'camera_color_topic',
default_value='camera/color/image_raw',
default_value='/camera/camera/color/image_raw',
description='the absolute ROS topic name to subscribe to color images.',
)
)
declared_arguments.append(
DeclareLaunchArgument(
'camera_info_topic',
default_value='camera/color/camera_info',
default_value='/camera/camera/color/camera_info',
description='the absolute ROS topic name to subscribe to the camera color info.',
)
)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ Visualization Manager:
Durability Policy: Volatile
History Policy: Keep Last
Reliability Policy: Reliable
Value: /camera/color/image_raw
Value: /camera/camera/color/image_raw
Value: true
- Class: rviz_default_plugins/Marker
Enabled: true
Expand Down

0 comments on commit b66d5b9

Please sign in to comment.