Add Object Detection as Interface Node

This commit is contained in:
shalenikol 2024-06-25 08:35:54 +00:00 committed by Igor Brylyov
parent 38401d9eff
commit f92670cd0d
8 changed files with 374 additions and 36 deletions

View file

@ -0,0 +1,17 @@
# from launch_ros.actions import Node
# from launch import LaunchDescription
def generate_launch_description():
print("The skill must be launched via interface node")
return []
# declared_arguments = []
# rbss_od = Node(
# package="rbss_objectdetection",
# executable="od_yolo_lc.py",
# )
# nodes_to_start = [
# rbss_od,
# ]
# return LaunchDescription(declared_arguments + nodes_to_start)