You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I used the script for motion planning from mani_skill/examples/motionplanning/panda/motionplanner.py. However, when I used it, I found that this motion planner seemed to have some errors.
I ran the following code:
res = planner.move_to_pose_with_screw(goal_pose)
print(goal_pose)
print(env.agent.robot.links_map["panda_hand_tcp"].pose)
It can be observed that there is some discrepancy between our goal_pose and the pose of panda_hand_tcp. Sometimes, this may lead to the failure of our planned target.
I would like to ask whether this error is caused by the motion planner?Or is it that this goal_pose is not meant for panda_hand_tcp?
The text was updated successfully, but these errors were encountered:
You can try playing with mp-lib further to tune this. The motionplanner is not heavily tuned to be extremely precise or accurate, just a tool to use and modify. You can probably try running move to pose with screw more than once, another is to lower the joint vel/acc limits of the planner so it is less likely to overshoot.
I used the script for motion planning from
mani_skill/examples/motionplanning/panda/motionplanner.py
. However, when I used it, I found that this motion planner seemed to have some errors.I ran the following code:
The results are as follows:
It can be observed that there is some discrepancy between our goal_pose and the pose of panda_hand_tcp. Sometimes, this may lead to the failure of our planned target.
I would like to ask whether this error is caused by the motion planner?Or is it that this goal_pose is not meant for panda_hand_tcp?
The text was updated successfully, but these errors were encountered: