36 defaultParams.profileEntityName =
"John Handover";
37 defaultParams.humanId =
"0";
38 defaultParams.orientationDegreesClockwise = 0.F;
39 defaultParams.orientationFacesRobot =
true;
41 const std::string skillName =
46 return ::armarx::skills::SkillDescription{
48 .description =
"Creates and commits a human pose with an attached face recognition. "
49 "Optionally, the pose can be set to face the robot.",
50 .rootProfileDefaults = defaultParams.toAron(),
52 .parametersType = ParamType::ToAronType()};
58 Base(GetSkillDescription()), remote(r), properties(p)
70 if (in.parameters.orientationFacesRobot)
72 committedPose = simulator.createHumanPoseFacingRobot(in.parameters.humanId,
73 in.parameters.positionCartesian);
77 committedPose = simulator.createHumanPose(in.parameters.humanId,
78 in.parameters.positionCartesian,
79 in.parameters.orientationDegreesClockwise);
84 simulator.createFaceRecognition(committedPose.
keypoints[
"Head"].positionGlobal->toEigen(),
85 in.parameters.profileEntityName);
87 return Skill::MakeSucceededResult();