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
Compare revisions
5dfba26f821b4958a4acc9fc676e0edfe9d26cb4 to main
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
robokudo/robokudo_msgs
Select target project
No results found
main
Select Git revision
Branches
main
ros2_iron
Swap
Target
femartin/robokudo_msgs
Select target project
robokudo/robokudo_msgs
naser1/robokudo_msgs
femartin/robokudo_msgs
3 results
5dfba26f821b4958a4acc9fc676e0edfe9d26cb4
Select Git revision
Branches
main
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (6)
additional documentation
· 8cccd064
Patrick Mania
authored
1 year ago
8cccd064
Added geometry_msgs dependency
· 7e117d38
Patrick Mania
authored
1 year ago
7e117d38
fix typo. thanks to aniedz
· 00d05bad
Patrick Mania
authored
1 year ago
00d05bad
explanation on size parameters
· ce4998b3
Patrick Mania
authored
1 year ago
ce4998b3
Edit package.xml
· 1d08126e
Femi Martin
authored
3 days ago
1d08126e
Edit package.xml
· 84fe801d
Femi Martin
authored
3 days ago
84fe801d
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
CMakeLists.txt
+1
-1
1 addition, 1 deletion
CMakeLists.txt
action/Query.action
+2
-0
2 additions, 0 deletions
action/Query.action
msg/ObjectDesignator.msg
+2
-2
2 additions, 2 deletions
msg/ObjectDesignator.msg
package.xml
+1
-1
1 addition, 1 deletion
package.xml
with
6 additions
and
4 deletions
CMakeLists.txt
View file @
84fe801d
...
...
@@ -17,7 +17,7 @@ add_action_files(DIRECTORY action FILES
generate_messages
(
DEPENDENCIES std_msgs actionlib_msgs geometry_msgs sensor_msgs
)
catkin_package
(
CATKIN_DEPENDS message_runtime rospy actionlib
CATKIN_DEPENDS message_runtime rospy actionlib
geometry_msgs
)
## System dependencies are found with CMake's conventions
...
...
This diff is collapsed.
Click to expand it.
action/Query.action
View file @
84fe801d
...
...
@@ -7,6 +7,7 @@ string type
# This could for example be a natural language statement if a specific, non-object centric event is happening in the scene
string description
# A description of the object(s) you are looking for
ObjectDesignator obj
---
#result
...
...
@@ -14,6 +15,7 @@ ObjectDesignator obj
# a generic string description what has been detected in the scene
string description
# A description of the object(s) we've found
ObjectDesignator[] res
---
#feedback
...
...
This diff is collapsed.
Click to expand it.
msg/ObjectDesignator.msg
View file @
84fe801d
...
...
@@ -3,10 +3,10 @@
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
ShapeSize[] shape_size # Object's possible sizes like dimensions or radius
. Numerical values
string[] color # Object's possible colors
string location # Object's location
string size # Object's s
ize
string size # Object's s
emantic size (e.g. small, large) in text format
geometry_msgs/PoseStamped[] pose # Object's possible 6D-poses
string[] pose_source # Object's possible sources (e.g. camera0)
...
...
This diff is collapsed.
Click to expand it.
package.xml
View file @
84fe801d
...
...
@@ -54,7 +54,7 @@
<depend>
message_generation
</depend>
<depend>
message_runtime
</depend>
<depend>
rospy
</depend>
<depend>
geometry_msgs
</depend>
<!-- The export tag contains other, unspecified, tags -->
<export>
...
...
This diff is collapsed.
Click to expand it.