Object detection: add YOLOv8 implementation; unified API with doc
This commit is contained in:
parent
4dbf722c73
commit
86a3f4170f
12 changed files with 582 additions and 7 deletions
|
@ -8,8 +8,13 @@ def generate_launch_description():
|
|||
package="rbs_perception",
|
||||
executable="pose_estimation_lifecycle.py",
|
||||
)
|
||||
object_detection = Node(
|
||||
package="rbs_perception",
|
||||
executable="detection_lifecycle.py",
|
||||
)
|
||||
|
||||
nodes_to_start = [
|
||||
pose_estimation
|
||||
pose_estimation,
|
||||
object_detection,
|
||||
]
|
||||
return LaunchDescription(declared_arguments + nodes_to_start)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue