Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add ShapeCompletion Action #52

Merged
merged 4 commits into from
Jun 10, 2024
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ set(msg_files

set(action_files
"action/GetMasks2D.action"
"action/ShapeCompletion.action"
)

rosidl_generate_interfaces(${PROJECT_NAME}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Goal

# Point cloud to complete
sensor_msgs/PointCloud2 partial_pointcloud

---
# Result
sensor_msgs/PointCloud2 complete_pointcloud

---
# Feedback
4 changes: 2 additions & 2 deletions moveit_studio_msgs/moveit_studio_vision_msgs/package.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
<name>moveit_studio_vision_msgs</name>
<version>3.0.0</version>
<description>Messages, services, and actions used by MoveIt Pro vision capabilities.</description>
<author email="sebastian.castro@picknik.ai">Sebastian Castro</author>
<maintainer email="sebastian.castro@picknik.ai">Sebastian Castro</maintainer>
<author email="support@picknik.ai">MoveIt Pro maintainer</author>
<maintainer email="support@picknik.ai">MoveIt Pro maintainer</maintainer>
Comment on lines -5 to +6
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

If you feel comfortable putting your name/email here, I think that's fine


<license>BSD-3-Clause</license>

Expand Down
Loading