Skip to content

Commit

Permalink
minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mgonzs13 committed Oct 27, 2023
1 parent e063688 commit 1b696dc
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 6 deletions.
2 changes: 1 addition & 1 deletion yolov8_bringup/launch/yolov8.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate_launch_description():
enable_cmd = DeclareLaunchArgument(
"enable",
default_value="True",
description="Wheter to start darknet enabled")
description="Whether to start YOLOv8 enabled")

threshold = LaunchConfiguration("threshold")
threshold_cmd = DeclareLaunchArgument(
Expand Down
11 changes: 6 additions & 5 deletions yolov8_bringup/launch/yolov8_3d.launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate_launch_description():
enable_cmd = DeclareLaunchArgument(
"enable",
default_value="True",
description="Whether to start darknet enabled")
description="Whether to start YOLOv8 enabled")

threshold = LaunchConfiguration("threshold")
threshold_cmd = DeclareLaunchArgument(
Expand All @@ -60,20 +60,21 @@ def generate_launch_description():
"input_image_topic",
default_value="/camera/rgb/image_raw",
description="Name of the input image topic")

input_depth_topic = LaunchConfiguration("input_depth_topic")
input_depth_topic_cmd = DeclareLaunchArgument(
"input_depth_topic",
default_value="/camera/aligned_depth_to_color/image_raw",
description="Name of the input depth topic")

input_depth_info_topic = LaunchConfiguration("input_depth_info_topic")
input_depth_info_topic_cmd = DeclareLaunchArgument(
"input_depth_info_topic",
default_value="/camera/aligned_depth_to_color/camera_info",
description="Name of the input depth info topic")

depth_image_units_divisor = LaunchConfiguration("depth_image_units_divisor")

depth_image_units_divisor = LaunchConfiguration(
"depth_image_units_divisor")
depth_image_units_divisor_cmd = DeclareLaunchArgument(
"depth_image_units_divisor",
default_value="1000",
Expand Down

0 comments on commit 1b696dc

Please sign in to comment.