diff --git a/Launchers/generic_webcam.launch.py b/Launchers/generic_webcam.launch.py new file mode 100644 index 000000000..49cb452db --- /dev/null +++ b/Launchers/generic_webcam.launch.py @@ -0,0 +1,16 @@ +import launch +from launch import LaunchDescription +from launch_ros.actions import Node + +def generate_launch_description(): + return LaunchDescription([ + Node( + package='v4l2_camera', + executable='v4l2_camera_node', + name='v4l2_camera_node', + parameters=[ + {'video_device': '/dev/video0'} + ], + ), + ]) + diff --git a/Launchers/human_detection_standard.launch.py b/Launchers/human_detection_standard.launch.py new file mode 100644 index 000000000..3e2d0101a --- /dev/null +++ b/Launchers/human_detection_standard.launch.py @@ -0,0 +1,7 @@ +import launch +from launch import LaunchDescription + +def generate_launch_description(): + return LaunchDescription() + +