![]() |
manymove_object_manager package from manymove repomanymove_cpp_trees manymove_hmi manymove_msgs manymove_object_manager manymove_planner manymove_py_trees manymove_signals |
Package Summary
Tags | No category tags. |
Version | 0.1.0 |
License | BSD-3-Clause |
Build type | AMENT_CMAKE |
Use | RECOMMENDED |
Repository Summary
Checkout URI | https://github.com/pastoriomarco/manymove.git |
VCS Type | git |
VCS Version | humble |
Last Updated | 2025-04-04 |
Dev Status | UNMAINTAINED |
CI status | No Continuous Integration |
Released | UNRELEASED |
Tags | No category tags. |
Contributing |
Help Wanted (0)
Good First Issues (0) Pull Requests to Review (0) |
Package Description
Additional Links
Maintainers
- Marco Pastorio
Authors
- Marco Pastorio
ManyMove Object Manager
This package is part of the manymove
project for ROS 2 Humble. It provides a unified, topic-based approach for managing collision objects within MoveIt 2. Use at your own risk; the repository is experimental and does not include safety features.
This package allows to add, remove, and check the existence of an object, and also to attach and detach object to a certain link and to obtain the pose of an object relative to a link.
Unlike other approaches that rely on the /apply_planning_scene
service, Object Manager uses the default MoveIt 2 topics to publish collision objects, and it exposes action servers to handle sequential operations (such as verifying whether objects are truly added or removed in the scene).
This approach is meant to ease the use with the manymove packages: it is compatible with both implementations of manymove_planner (MoveGroup and MoveItCPP), and doen’t access the planning scene directly to avoid possible racing conditions with the parallel planning and execution of the nodes in manymove_py_trees
and manymove_cpp_trees
.
Overview
Key Functionalities
-
Topic-Based Collision Updates Publishes collision objects (add/remove) to MoveIt 2’s default
/collision_object
and/attached_collision_object
topics; no direct calls to/apply_planning_scene
. -
Action Interfaces
Offers multiple action servers for:
-
/add_collision_object
: Adds a collision object, verifying presence by querying/get_planning_scene
. -
/remove_collision_object
: Publishes a remove operation and confirms its success. -
/check_object_exists
: Checks if an object is present or attached. -
/attach_detach_object
: Attaches/detaches an object to/from a specified link. -
/get_object_pose
: Retrieves an object’s pose relative to a link with optional transformations.
-
-
Sequential Verification Retries actions until the planning scene is updated, mitigating race conditions.
- Collision Spawner Reads a YAML file to spawn or remove multiple objects at once, simplifying environment setup.
Architecture
1. object_manager_node
This node hosts the action servers:
-
AddCollisionObject Action
Publishes the object to the default topic. Then, repeatedly checks if the object is in the planning scene. If confirmed, returns success. -
RemoveCollisionObject Action
Publishes a remove operation for a given object ID. Then, repeatedly checks if the object is truly gone from the scene. If confirmed, returns success. -
CheckObjectExists Action
Submits a request to/get_planning_scene
to verify the presence of a specific object ID.
Under the hood, object_manager_node
:
- Publishes
moveit_msgs/msg/CollisionObject
to/collision_object
. - Queries the planning scene via the
/get_planning_scene
service. - Implements a retry/backoff mechanism to robustly confirm that the scene is updated.
2. collision_spawner
This node reads a YAML configuration describing multiple objects to spawn. On startup:
- Removes all existing “_spawner” objects (i.e., previously spawned objects), cleaning up or resetting the scene.
- Iterates through the YAML list:
- If a pose is provided, uses it.
- Otherwise, generates a random pose within specified boundaries.
- Sends an AddCollisionObject action goal to the
object_manager_node
to create each object in the scene.
When done, the node shuts itself down by default.
Installation & Dependencies
Please refer to the main ManyMove README for overall setup instructions, build steps, and prerequisites.
Usage
Launching the Nodes
-
Object Manager Node Only
This will start the node that hosts all the action servers.
ros2 launch object_manager object_manager.launch.py
- This launch file:
- Starts
object_manager_node
with a defaultframe_id
parameter set toworld
.
- Starts
-
Collision Spawner
This will start the spawner node, which will read your YAML configuration and attempt to add collision objects.
ros2 launch object_manager collision_spawner.launch.py
- This launch file:
- Runs the
collision_spawner
node. - Loads the YAML file from
object_manager/config/objects.yaml
by default. - Removes any “_spawner” objects already in the scene, then adds new ones.
- Runs the
Design Choices (Beginner-Friendly)
-
Why Topics Instead of
/apply_planning_scene
?- Some MoveIt configurations or tutorials rely on
/apply_planning_scene
. However, certain versions or use cases (e.g.,MoveGroup
vs.MoveItCpp
) might not expose the same services. By directly publishing to the default collision object topic (/collision_object
), we ensure compatibility across multiple MoveIt usage patterns.
- Some MoveIt configurations or tutorials rely on
-
Why Actions Instead of Services?
- We need to check whether an object truly exists or has been removed from the planning scene, which can take time to reflect. Actions let us:
- Provide feedback (e.g., “Attempt 1: object not found yet.”).
- Cancel the request if needed.
- Retry in the background until success or failure is confirmed.
- We need to check whether an object truly exists or has been removed from the planning scene, which can take time to reflect. Actions let us:
-
Why a Collision Spawner?
- In many applications, we have a set of known environment objects or test objects that we want to spawn automatically. The
collision_spawner
node reads from a YAML file, removing old objects first, and adding new ones. This keeps your scene definition in a single config file.
- In many applications, we have a set of known environment objects or test objects that we want to spawn automatically. The
-
Random or Fixed Pose
- If a pose is omitted in the YAML, we generate random positions within certain boundaries (e.g.,
x
in [0.15, 0.3],y
in [-0.25, 0.25], etc.). This is convenient for testing or simulation scenarios where you want objects to appear in slightly different locations each time.
- If a pose is omitted in the YAML, we generate random positions within certain boundaries (e.g.,
Notes & Disclaimer
- Experimental: No safety features are provided.
-
Compatibility: Works with MoveGroup and MoveItCpp in
manymove_planner
. - Check Main README for disclaimers, licensing, and more.
Wiki Tutorials
Package Dependencies
Deps | Name |
---|---|
ament_cmake | |
ament_lint_auto | |
ament_lint_common | |
rclcpp | |
geometry_msgs | |
moveit_msgs | |
std_srvs | |
tf2 | |
tf2_ros | |
tf2_geometry_msgs | |
yaml_cpp_vendor | |
geometric_shapes | |
manymove_msgs |
System Dependencies
Dependant Packages
Name | Deps |
---|---|
manymove_cpp_trees |