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

pradeepr's profile - activity

2022-01-06 06:15:29 -0500 received badge  Student (source)
2020-11-05 08:01:45 -0500 received badge  Famous Question (source)
2020-05-20 10:29:45 -0500 received badge  Notable Question (source)
2020-05-20 01:01:37 -0500 edited answer Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB)

Thanks to @fvd for the idea. Step 1: Make sure to add the new virtual public function in "collision_env.h". virtual

2020-05-19 19:12:04 -0500 received badge  Self-Learner (source)
2020-05-19 19:12:04 -0500 received badge  Teacher (source)
2020-05-19 19:11:54 -0500 received badge  Popular Question (source)
2020-05-19 16:34:14 -0500 answered a question Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB)

Thanks to @fvd for the idea. Step 1: Make sure to add the new virtual public function in "collision_env.h". virtual

2020-05-19 16:12:33 -0500 commented answer Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB)

Following your suggestion, I found a way to use "collision_env" object to provide the necessary collision flags. I was w

2020-05-19 13:32:53 -0500 received badge  Supporter (source)
2020-05-19 13:32:50 -0500 marked best answer Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB)

I was wondering if the Moveit API supports collision checking between two collision objects in a planning scene. The robot state does not come into the picture here - only two collision objects of type "moveit_msgs::CollisionObject".

I am working with ROS Melodic on Ubuntu 18.04 running in a docker container.

Here are some of my ideas so far:

1) I tried digging through code related AllowedCollisionMatrix. It has methods such as "setDefaultEntry". As far as I understood, it useful only for ignoring collision between robot and a specific object in the scene.

2) A hacky solution is to put the robot in a known non-colliding state. Then, temporarily attach "CollisionObjectA" to the robot. And, see if it collides with "CollisionObjectB" using the existing functions in the API. This solution seems like the easiest but it is also ugly.

3) Define "CollisionObjectA" as link attached to a 6 DOF joint co-located at the root of the robot. Make a planning group for the 6 DOF joint. Set the 6 DOF state of the "CollisionObjectA" and query collision via the existing API (i.e., isValid ). Though it theoretically makes sense, I guess that there can be complications when solving IK for other planning groups.

4) Instantiate FCL collision manager object on my own and perform the necessary collision checks. This has the drawback of ensuring the collision object A and B in planning scene are in sync with the same in my FCL collision manager.

If anybody can shed light on how collision between two collision objects can be detected/queried, it would be really helpful.

2020-05-19 13:32:50 -0500 received badge  Scholar (source)
2020-05-19 10:52:48 -0500 commented answer Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB)

Thanks for the link to Developer Concepts. I did not know such a webpage even existed. It gives a lot of behind the scen

2020-05-13 01:38:43 -0500 received badge  Enthusiast
2020-05-08 15:29:30 -0500 asked a question Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB)

Collision between planning scene objects (e.g. CollisionObjectA and CollisionObjectB) I was wondering if the Moveit API