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
|
@ -24,6 +24,7 @@ rosidl_generate_interfaces(${PROJECT_NAME}
|
|||
"msg/PropertyValuePair.msg"
|
||||
"msg/ActionFeedbackStatusConstants.msg"
|
||||
"msg/ActionResultStatusConstants.msg"
|
||||
"msg/BoundBox.msg"
|
||||
"srv/DetectObject.srv"
|
||||
"srv/BtInit.srv"
|
||||
"srv/AssembleState.srv"
|
||||
|
|
7
rbs_skill_interfaces/msg/BoundBox.msg
Normal file
7
rbs_skill_interfaces/msg/BoundBox.msg
Normal file
|
@ -0,0 +1,7 @@
|
|||
bool is_detection
|
||||
string name
|
||||
float64 x
|
||||
float64 y
|
||||
float64 w
|
||||
float64 h
|
||||
float64 conf
|
Loading…
Add table
Add a link
Reference in a new issue