Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
robokudo_msgs
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
robokudo
robokudo_msgs
Commits
5dfba26f
Commit
5dfba26f
authored
1 year ago
by
Patrick Mania
Browse files
Options
Downloads
Plain Diff
Merge branch 'object_size_msg' into 'main'
Object size msg See merge request
!1
parents
8e08b279
49c0abc1
Branches
gameUI
Branches containing commit
No related tags found
1 merge request
!1
Object size msg
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-0
1 addition, 0 deletions
CMakeLists.txt
action/Query.action
+12
-0
12 additions, 0 deletions
action/Query.action
msg/ObjectDesignator.msg
+18
-8
18 additions, 8 deletions
msg/ObjectDesignator.msg
msg/ShapeSize.msg
+5
-0
5 additions, 0 deletions
msg/ShapeSize.msg
with
36 additions
and
8 deletions
CMakeLists.txt
+
1
−
0
View file @
5dfba26f
...
...
@@ -6,6 +6,7 @@ find_package(catkin REQUIRED actionlib message_generation std_msgs geometry_msgs
add_message_files
(
FILES
ObjectDesignator.msg
ShapeSize.msg
)
add_action_files
(
DIRECTORY action FILES
...
...
This diff is collapsed.
Click to expand it.
action/Query.action
+
12
−
0
View file @
5dfba26f
#goal
# the type of the query, like 'detect', 'track',...
string type
# a generic string description if the object designators can't represent the requested information.
# This could for example be a natural language statement if a specific, non-object centric event is happening in the scene
string description
ObjectDesignator obj
---
#result
# a generic string description what has been detected in the scene
string description
ObjectDesignator[] res
---
#feedback
...
...
This diff is collapsed.
Click to expand it.
msg/ObjectDesignator.msg
+
18
−
8
View file @
5dfba26f
# Object Description
string uid # Object's unique identifier
string type # Object's type
string[] shape # Object's possible shapes
string[] color # Object's possible colors
string location # Object's location
string size # Object's size
geometry_msgs/PoseStamped[] pose # Object's possible 6D-poses
string[] poseSource # Object's possible sources (e.g. camera0)
\ No newline at end of file
string uid # Object's unique identifier
string type # Object's type
string[] shape # Object's possible shapes
ShapeSize[] shape_size # Object's possible sizes like dimensions or radius
string[] color # Object's possible colors
string location # Object's location
string size # Object's size
geometry_msgs/PoseStamped[] pose # Object's possible 6D-poses
string[] pose_source # Object's possible sources (e.g. camera0)
# The following fields should only be used, if you can not represent one of your object properties
# in the previous fields.
#
# A generic string list of attributes that describe a certain quality or characteristic
string[] attribute
# More general form of the attributes field. This field can be used for a more general description of the object itself.
string[] description
\ No newline at end of file
This diff is collapsed.
Click to expand it.
msg/ShapeSize.msg
0 → 100644
+
5
−
0
View file @
5dfba26f
#This message stores several shape sizes. The actual type of shape can be accessed
# through the object-designator.
geometry_msgs/Vector3 dimensions #For example box sizes can be stored here
float32 radius #Radius for a circle, sphere, cylinder, etc.
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment