Non-convex shape as a collisionBox for robot path planning
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
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
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
Réponses (2)
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.
0 commentaires
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.
0 commentaires
Voir également
Catégories
En savoir plus sur Robotics dans Help Center et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!