-
Notifications
You must be signed in to change notification settings - Fork 30
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
ValueError: Could not load resource ……/link0.obj.convex.stl #103
Comments
@LittlePotatoChip Same problem here. Have you solved it? |
no, I have switched to other tools,I find it's not necessary for my work |
What version are you guys using? There might have been a convex bug before iirc. Can you please try the nightly wheels here? |
@Lexseal Thanks for your prompt response. I'm using the
|
convex hull should work if your geometry is more or less convex to begin with. at worst your collision detection will be a little preemptive |
I tried to make a demo using my own codes,following the documetiation:
from mplib import Planner …… planner = Planner( urdf="/home/potato/workplace/IsaacGym_Preview_4_Package/isaacgym/assets/urdf/franka_description/robots/franka_panda.urdf", move_group="panda_hand", # srdf=None, # new_package_keyword="", use_convex=False, link_names=["panda_link0", "panda_link1", "panda_link2", "panda_link3", "panda_link4", "panda_link5", "panda_link6", "panda_link7", "panda_link8","panda_hand"], joint_names=["panda_joint1", "panda_joint2", "panda_joint3", "panda_joint4", "panda_joint5", "panda_joint6", "panda_joint7"], joint_vel_limits=None, joint_acc_limits=None, objects=[], verbose=False, ) …… status, q_goals = planner.IK( …… ) ‘ it printed errors:
Traceback (most recent call last):
File "/home/potato/workplace/test_sapien/get start/xbox_demo.py", line 171, in
planner = Planner(
^^^^^^^^
File "/home/potato/miniforge3/envs/maniskill/lib/python3.11/site-packages/mplib/planner.py", line 65, in init
self.robot = ArticulatedModel(
^^^^^^^^^^^^^^^^^
ValueError: Could not load resource /home/potato/workplace/IsaacGym_Preview_4_Package/isaacgym/assets/urdf/franka_description/robots/franka_description/meshes/collision/link0.obj.convex.stl
Unable to open file "/home/potato/workplace/IsaacGym_Preview_4_Package/isaacgym/assets/urdf/franka_description/robots/franka_description/meshes/collision/link0.obj.convex.stl".
Hint: the mesh directory may be wrong.
`
I don't have "link0.obj.convex.stl",but I have link0.obj and link0.stl.And there is no things like "link0.obj.convex.stl" in the franka_panda.urdf(urdf file is from isaac gym)
The text was updated successfully, but these errors were encountered: