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
We need to make sure the header frame and stamp are set correctly in the poses set inside the goalConstraints.
For example it was observed that the following code needs to used in order to have the correct goal sampler.
auto setGoal = [this, &request](RobotPose &eef_pose) { geometry_msgs::PoseStamped poseMsg; poseMsg.header.frame_id = robot->getModelConst()->getModelFrame(); poseMsg.header.stamp = ros::Time::now(); poseMsg.pose = TF::poseEigenToMsg(eef_pose); request.clearGoals(); request.getRequest().goal_constraints.push_back( kinematic_constraints::constructGoalConstraints( robot->getSolverTipFrames(group)[0], poseMsg, {1e-3, 1e-3, 1e-3}, {1e-2, 1e-2, constants::pi})); return true; };
The text was updated successfully, but these errors were encountered:
@LeeYiyuan Maybe you should be aware of this.
Sorry, something went wrong.
zkingston
No branches or pull requests
We need to make sure the header frame and stamp are set correctly in the poses set inside the goalConstraints.
For example it was observed that the following code needs to used in order to have the correct goal sampler.
The text was updated successfully, but these errors were encountered: