Non-convex shape as a collisionBox for robot path planning

12 vues (au cours des 30 derniers jours)
Johan Poccard
Johan Poccard le 25 Sep 2020
Hi,
I am trying to import an .stl file in Matlab et set it up as a collisionBox for robot path planning.
My current code is:
cagePosition=[1 1 1];
cagedata=stlread('BLMcage.stl'); %STL needs to be binary
cage = collisionMesh(cagedata.Points);
cage.Pose=trvec2tform(cagePosition);
show(cage)
The problem is that the collisionMesh function only takes the vertices as argument and creates a convex shape based on those. It doesn't take each point as being part of the shape but puts some of them inside the shape so it can be convex. I know that some functions can read .stl files properly but this one seems to be the only one I can use to create a collisionBox from the .stl file.
Can someone find an alternate way of doing this ?
  2 commentaires
Ameer Hamza
Ameer Hamza le 26 Sep 2020
I don't think that the robotic toolbox has any such function. Collision detection for non-convex shapes can be too computationally expensive. You may need to develop something yourself. This seems to be a good starting point: http://gamma.cs.unc.edu/PCOLLISION/papers/ICRA17.pdf
Johan Poccard
Johan Poccard le 28 Sep 2020
Modifié(e) : Johan Poccard le 28 Sep 2020
Ok that's too bad. I think I'll just try to recreate my non convex shape with multiple convex shapes then.
Thank you

Connectez-vous pour commenter.

Réponses (2)

Yiping Liu
Yiping Liu le 13 Avr 2021
The CollisionMesh is designed to convert any unconvex mesh into its convex hull. The reason for that is the checkCollsion function (based on libccd) only supports convex polytopes. One workaround is that you can try to split a nonconvex mesh into a set of convex meshes - but that's not a trivial task to automate that process.

Bruno Luong
Bruno Luong le 13 Avr 2021
The MATLAB probably use GJK algorithm that requires convex shape.
You should split the object in sum of convex. I can recommend the v-hacd package, even there is no direct interface to MATLAB.

Catégories

En savoir plus sur Collision Detection dans Help Center et File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by