Skip to content

Commit

Permalink
Add dependencies and update launch file
Browse files Browse the repository at this point in the history
  • Loading branch information
ozanhakantunca committed Dec 19, 2024
1 parent 67593bb commit ec194ae
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
1 change: 1 addition & 0 deletions auv_software/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@
<depend>auv_control</depend>
<depend>auv_navigation</depend>
<depend>auv_localization</depend>
<depend>auv_vision</depend>

<export>

Expand Down
4 changes: 2 additions & 2 deletions auv_vision/auv_detection/launch/tracker.launch
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<launch>
<arg name="debug" default="false"/>
<arg name="use_gui" default="false"/>
<arg name="yolo_model" default="rbp3s_best.pt"/>
<arg name="model_source_path" default="$(find auv_detection)/models/$(arg yolo_model)"/>
<arg name="ultralytics_models_dir" default="$(find ultralytics_ros)/models"/>
Expand Down Expand Up @@ -41,7 +41,7 @@
<rosparam param="device" subst_value="true">$(arg device)</rosparam>
</node>

<node if="$(arg debug)" name="image_view" pkg="image_view" type="image_view" output="screen">
<node if="$(arg use_gui)" name="image_view" pkg="image_view" type="image_view" output="screen">
<remap from="image" to="$(arg result_image_topic)"/>
</node>
</launch>
2 changes: 2 additions & 0 deletions auv_vision/auv_detection/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
<license>BSD-3-Clause</license>

<buildtool_depend>catkin</buildtool_depend>
<depend>ultralytics_ros</depend>
<depend>image_view</depend>

<export>
</export>
Expand Down

0 comments on commit ec194ae

Please sign in to comment.