ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question
1

Clarification for GraspableObject interface

asked 2017-06-29 05:08:53 -0500

shura04 gravatar image

updated 2023-04-24 05:13:27 -0500

130s gravatar image

I'm working with simple_grasping package for grasping, and using Python API to implement grasping for a 7 DOF arm. After perception, their definition of an object detection includes many, many things like the pose of the object, grasp points, dense point cloud points, dimension of the object and I'm having to figure out these things by doing, dir(object). I tried digging through the source code at grasping_msgs.msg but it's too complicated.

Has anyone worked with the same GraspableObject type before? Can you explain how this object is defined and what are the various methods it consists of?

Type of the object: <class 'grasping_msgs.msg._graspableobject.graspableobject'="">

The documentation here - http://docs.ros.org/jade/api/grasping... offers very little explanation.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-04-24 05:10:28 -0500

130s gravatar image

updated 2023-04-24 07:31:57 -0500

I agree grasping_msgs is underrated, undocumented and could use more explanation. That said, it offers a good flexible interface utilizing existing I/F types.

API doc on ROS Noetic (still supported until 2025, while the link in OP is EoLed Jade).

The msg package was presumably made with (but is not limited to be coupled with) simple_grasping package initially. With a proper configuration with the following command in ROS2, you can obtain the pose of detected objects. I added some basic usage in a PR simple_grasping!13 that is unmerged at the time of writing (Note I did so with ROS2 as it's 2023 now). Feel free to review and leave a review comments there. If your application uses MoveIt for the motion planning, using primitive_poses attribute may work well.

Btw I removed "Python" from the title of this question. ROS Action is programming language agnostic (in Python and C++). While yes it may be a bit tricky to access generated msg/action interfaces from each language, I assume that's not what troubled the OP.

edit flag offensive delete link more

Question Tools

1 follower

Stats

Asked: 2017-06-29 05:08:53 -0500

Seen: 99 times

Last updated: Apr 24 '23