We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
I run
rosrun herbpy console.py --sim
Then, I execute the following code:
robot.right_arm.SetActive() manip = robot.GetActiveManipulator() target_ee_pose = manip.GetEndEffectorTransform() target_ee_pose[2,3] -= 0.2 planner = VectorFieldPlanner() traj = planner.PlanToEndEffectorPose(robot, target_ee_pose)
It returns the following exception:
/home/spelle/ros_ws/src/prpy/src/prpy/planning/vectorfield.pyc in FollowVectorField(self, robot, fn_vectorfield, fn_terminate, integration_timelimit, timelimit, dt_multiplier, **kw_args) 371 372 if t_cache is None: --> 373 raise exception or PlanningError('An unknown error has occurred.') 374 elif exception: 375 logger.warning('Terminated early: %s', str(exception))
target_ee_pose is reachable and not in collision. Any suggestions?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I run
Then, I execute the following code:
It returns the following exception:
target_ee_pose is reachable and not in collision.
Any suggestions?
The text was updated successfully, but these errors were encountered: