20 lines
522 B
Python
20 lines
522 B
Python
from launch_ros.actions import Node
|
|
from launch import LaunchDescription
|
|
|
|
def generate_launch_description():
|
|
declared_arguments = []
|
|
|
|
pose_estimation = Node(
|
|
package="rbs_perception",
|
|
executable="pose_estimation_lifecycle.py",
|
|
)
|
|
object_detection = Node(
|
|
package="rbs_perception",
|
|
executable="detection_lifecycle.py",
|
|
)
|
|
|
|
nodes_to_start = [
|
|
pose_estimation,
|
|
object_detection,
|
|
]
|
|
return LaunchDescription(declared_arguments + nodes_to_start)
|