-
Notifications
You must be signed in to change notification settings - Fork 195
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 tutorial on how to add a new move group capability #295
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
find_package(rosidl_default_generators REQUIRED) | ||
find_package(builtin_interfaces REQUIRED) | ||
|
||
rosidl_generate_interfaces(${PROJECT_NAME} | ||
srv/GetCollisionObjects.srv | ||
DEPENDENCIES | ||
builtin_interfaces | ||
moveit_msgs) | ||
|
||
add_library(get_collision_objects_service_capability SHARED | ||
src/get_collision_objects_service_capability.cpp) | ||
rosidl_get_typesupport_target(${PROJECT_NAME}_target ${PROJECT_NAME} rosidl_typesupport_cpp) | ||
target_link_libraries(get_collision_objects_service_capability ${${PROJECT_NAME}_target}) | ||
ament_target_dependencies(get_collision_objects_service_capability ${THIS_PACKAGE_INCLUDE_DEPENDS}) | ||
|
||
install( | ||
TARGETS | ||
get_collision_objects_service_capability | ||
LIBRARY DESTINATION lib | ||
ARCHIVE DESTINATION lib | ||
RUNTIME DESTINATION lib/${PROJECT_NAME} | ||
) |
Original file line number | Diff line number | Diff line change | ||||||||
---|---|---|---|---|---|---|---|---|---|---|
@@ -0,0 +1,85 @@ | ||||||||||
Creating a new MoveGroup capability | ||||||||||
=================================== | ||||||||||
|
||||||||||
In :doc:`Move Group C++ Interface </doc/examples/move_group_interface/move_group_interface_tutorial>` we saw how MoveGroup node make it easy to use MoveIt through ROS interfaces, this node have a list of `default capabilities <https://github.com/ros-planning/moveit2/blob/main/moveit_ros/move_group/default_capabilities_plugin_description.xml>`_ that provide common used action/services to interact with its internal components, sometimes we need to extend it for our own specific applications which could be done easily by creating MoveGroup capability. | ||||||||||
|
||||||||||
|
||||||||||
Getting Started | ||||||||||
--------------- | ||||||||||
If you haven't already done so, make sure you've completed the steps in :doc:`Getting Started </doc/tutorials/getting_started/getting_started>`. | ||||||||||
|
||||||||||
You should also have gone through the steps in :doc:`Visualization with MoveIt RViz Plugin </doc/tutorials/quickstart_in_rviz/quickstart_in_rviz_tutorial>` | ||||||||||
|
||||||||||
Creating a MoveGroup Capability | ||||||||||
------------------------------- | ||||||||||
`This Page <http://wiki.ros.org/pluginlib>`_ gives a detailed explanation of how to add plugins in ROS in general. The two necessary elements are base and plugin classes. The plugin class inherits from the base class and overrides its virtual functions. The main library used for this purpose is pluginlib. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
In this section, we will show how to add a new MoveGroup capability. For demonstration purposes, we will create a capability which provide a service to query the collision objects in MoveGroup's planning scene. The final source files designed in this tutorial are available :codedir:`here <move_group_capabilities/src>`. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Hopefully, this's a good example, let me know if you have a better one There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
I think we need to prefix this, codedir does an external link though so hard to be sure |
||||||||||
|
||||||||||
First we start by creating a class GetCollisionObjects by inheriting from move_group::MoveGroupCapability, to do so we create a file named ``get_collision_objects_service_capability.cpp`` in src folder. the minimal requirement is to pass the plugin name to the base class constructor ``MoveGroupCapability``, override the ``initialize`` function, and register the class as a plugin by using ``PLUGINLIB_EXPORT_CLASS``. | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
.. tutorial-formatter:: ./src/get_collision_objects_service_capability.cpp | ||||||||||
|
||||||||||
Exporting the capability | ||||||||||
^^^^^^^^^^^^^^^^^^^^^^^^ | ||||||||||
To export the plugin we create a plugin description xml file ``plugin_description.xml`` | ||||||||||
|
||||||||||
.. code-block:: xml | ||||||||||
|
||||||||||
<library path="move_group_tool_changing_capability"> | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
<class name="move_group/ToolChangingCapability" type="move_group::ToolChangingCapability" base_class_type="move_group::MoveGroupCapability"> | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
<description> | ||||||||||
MoveGroup capability to get a list of collision objects in the planning scene | ||||||||||
</description> | ||||||||||
</class> | ||||||||||
</library> | ||||||||||
|
||||||||||
The ``plugin_description.xml`` need to be added to the ament index to be found at runtime, in ``CMakeLists.txt`` add | ||||||||||
|
||||||||||
**NOTE** Make sure to add it to the top-level ``CMakeLists.txt`` file otherwise it will not be detected bu ROS | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think this line and the one above it are meant to be consolidated? |
||||||||||
|
||||||||||
.. code-block:: cmake | ||||||||||
|
||||||||||
pluginlib_export_plugin_description_file(moveit_ros_move_group doc/examples/move_group_capabilities/plugin_description.xml) | ||||||||||
|
||||||||||
Checking the capability | ||||||||||
^^^^^^^^^^^^^^^^^^^^^^^ | ||||||||||
To get a list of the all available capabilities run | ||||||||||
|
||||||||||
.. code-block:: bash | ||||||||||
|
||||||||||
ros2 run moveit_ros_move_group list_move_group_capabilities | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Should we instruct them to copy the examples/move_group_capabilities folder into their workspace first? |
||||||||||
|
||||||||||
you should see ``move_group/GetCollisionObjectsCapability`` as a capability | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. I think it would be nice to have the expected output here. The downside is it could get out of sync if the default move group plugins change in the future. |
||||||||||
|
||||||||||
Capability usage | ||||||||||
^^^^^^^^^^^^^^^^ | ||||||||||
To use the capability we need first to tell move_group to use it as follow | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||
|
||||||||||
.. code-block:: python | ||||||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is our recommendation here to add this to moveit2_tutorials |
||||||||||
|
||||||||||
run_move_group_node = Node( | ||||||||||
package="moveit_ros_move_group", | ||||||||||
executable="move_group", | ||||||||||
parameters=[ | ||||||||||
... | ||||||||||
{"capabilities": """move_group/GetCollisionObjects"""}, | ||||||||||
], | ||||||||||
) | ||||||||||
|
||||||||||
Now launch move_group | ||||||||||
|
||||||||||
.. code-block:: bash | ||||||||||
|
||||||||||
ros2 launch moveit2_tutorials move_group.launch.py | ||||||||||
|
||||||||||
To use the new capability run the following line, it should return empty list of objects | ||||||||||
|
||||||||||
.. code-block:: bash | ||||||||||
|
||||||||||
ros2 service call /move_group/get_collision_objects moveit2_tutorials/srv/GetCollisionObjects {} | ||||||||||
|
||||||||||
Now try to add different objects and use the capability again | ||||||||||
|
||||||||||
.. image:: list_collision_objects.gif | ||||||||||
:width: 500pt |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<library path="get_collision_objects_service_capability"> | ||
<class name="move_group/GetCollisionObjectsCapability" type="move_group::GetCollisionObjectsCapability" base_class_type="move_group::MoveGroupCapability"> | ||
<description> | ||
MoveGroup capability to get a list of collision objects in the planning scene | ||
</description> | ||
</class> | ||
</library> |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
// Copyright 2022 PickNik Inc. | ||
// | ||
// Redistribution and use in source and binary forms, with or without | ||
// modification, are permitted provided that the following conditions are met: | ||
// | ||
// * Redistributions of source code must retain the above copyright | ||
// notice, this list of conditions and the following disclaimer. | ||
// | ||
// * Redistributions in binary form must reproduce the above copyright | ||
// notice, this list of conditions and the following disclaimer in the | ||
// documentation and/or other materials provided with the distribution. | ||
// | ||
// * Neither the name of the PickNik Inc. nor the names of its | ||
// contributors may be used to endorse or promote products derived from | ||
// this software without specific prior written permission. | ||
// | ||
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" | ||
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE | ||
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE | ||
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR | ||
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF | ||
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS | ||
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN | ||
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) | ||
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | ||
// POSSIBILITY OF SUCH DAMAGE. | ||
|
||
#include <moveit/moveit_cpp/moveit_cpp.h> | ||
#include <moveit/planning_scene_monitor/planning_scene_monitor.h> | ||
#include <moveit/move_group/move_group_capability.h> | ||
#include <moveit2_tutorials/srv/get_collision_objects.hpp> | ||
|
||
static const rclcpp::Logger LOGGER = rclcpp::get_logger("moveit.move_group.get_collision_objects_capability"); | ||
|
||
// BEGIN_TUTORIAL | ||
// | ||
namespace move_group | ||
{ | ||
class GetCollisionObjectsCapability : public MoveGroupCapability | ||
{ | ||
public: | ||
/* Pass the plugin name as a parameter to the base class */ | ||
GetCollisionObjectsCapability() : MoveGroupCapability("GetCollisionObjectsCapability") | ||
{ | ||
} | ||
|
||
/* Override this function to do the necessary initializations, here we only need a service server */ | ||
void initialize() override | ||
{ | ||
get_collision_objects_service_ = | ||
context_->moveit_cpp_->getNode()->create_service<moveit2_tutorials::srv::GetCollisionObjects>( | ||
"~/get_collision_objects", std::bind(&GetCollisionObjectsCapability::getCollisionObjects, this, | ||
std::placeholders::_1, std::placeholders::_2)); | ||
} | ||
|
||
void getCollisionObjects(const moveit2_tutorials::srv::GetCollisionObjects::Request::SharedPtr& /*req*/, | ||
moveit2_tutorials::srv::GetCollisionObjects::Response::SharedPtr res) const | ||
{ | ||
planning_scene_monitor::LockedPlanningSceneRO scene(context_->moveit_cpp_->getPlanningSceneMonitor()); | ||
scene->getCollisionObjectMsgs(res->collision_objects); | ||
} | ||
|
||
private: | ||
rclcpp::Service<moveit2_tutorials::srv::GetCollisionObjects>::SharedPtr get_collision_objects_service_; | ||
}; | ||
} // namespace move_group | ||
|
||
#include <pluginlib/class_list_macros.hpp> | ||
/* Register the class as a plugins */ | ||
PLUGINLIB_EXPORT_CLASS(move_group::GetCollisionObjectsCapability, move_group::MoveGroupCapability) | ||
|
||
// END_TUTORIAL |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
--- | ||
moveit_msgs/CollisionObject[] collision_objects |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nit