CreateHumanPoseWithFaceRecognition.cpp
Go to the documentation of this file.
1 /*
2  * This file is part of ArmarX.
3  *
4  * ArmarX is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * ArmarX is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11  * GNU General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License
14  * along with this program. If not, see <http://www.gnu.org/licenses/>.
15  *
16  * @package VisionX::COMPONENT_NAME_SNAKE::skills
17  * @author Peter Albrecht ( usnlf at student dot kit dot edu)
18  * @date 2024
19  * @copyright http://www.gnu.org/licenses/gpl-2.0.txt
20  * GNU General Public License
21  */
22 
24 
28 
30 {
31 
34  {
35  ParamType defaultParams;
36  defaultParams.profileEntityName = "John Handover";
37  defaultParams.humanId = "0";
38  defaultParams.orientationDegreesClockwise = 0.F;
39  defaultParams.orientationFacesRobot = true;
40 
41  const std::string skillName =
43  const armarx::skills::SkillID skillId =
45 
46  return ::armarx::skills::SkillDescription{
47  .skillId = skillId,
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(),
51  .timeout = ::armarx::Duration::MilliSeconds(1000),
52  .parametersType = ParamType::ToAronType()};
53  }
54 
58  Base(GetSkillDescription()), remote(r), properties(p)
59  {
60  }
61 
63  CreateHumanPoseWithFaceRecognition::main(const SpecializedMainInput& in)
64  {
65  core::PersonSimulator simulator(remote, properties);
66 
67  // create a pose, and then create a face recognition at the face position
68 
69  armarx::armem::human::HumanPose committedPose;
70  if (in.parameters.orientationFacesRobot)
71  {
72  committedPose = simulator.createHumanPoseFacingRobot(in.parameters.humanId,
73  in.parameters.positionCartesian);
74  }
75  else
76  {
77  committedPose = simulator.createHumanPose(in.parameters.humanId,
78  in.parameters.positionCartesian,
79  in.parameters.orientationDegreesClockwise);
80  }
81 
82  // we gain the committed pose from the simulator
83  // take position of face; create face recognition at that location
84  simulator.createFaceRecognition(committedPose.keypoints["Head"].positionGlobal->toEigen(),
85  in.parameters.profileEntityName);
86 
87  return Skill::MakeSucceededResult();
88  }
89 
90 } // namespace VisionX::person_simulator::skills
VisionX::person_simulator::skills::CreateHumanPoseWithFaceRecognition::CreateHumanPoseWithFaceRecognition
CreateHumanPoseWithFaceRecognition(const core::PersonSimulator::Remote &r, const core::PersonSimulator::Properties &p)
Definition: CreateHumanPoseWithFaceRecognition.cpp:55
VisionX::person_simulator::skills::skill_ids::CreateHumanPoseWithFaceRecognition
const armarx::skills::SkillID CreateHumanPoseWithFaceRecognition
Definition: skill_ids.h:34
armarx::skills::SimpleSpecializedSkill< ::VisionX::person_simulator::skills::arondto::CreateHumanPoseWithFaceRecognitionParams >::ParamType
::VisionX::person_simulator::skills::arondto::CreateHumanPoseWithFaceRecognitionParams ParamType
Definition: SimpleSpecializedSkill.h:14
VisionX::person_simulator::skills::constants::CreateHumanPoseWithFaceRecognition
const std::string CreateHumanPoseWithFaceRecognition
Definition: constants.h:33
armarx::skills::SkillDescription
Definition: SkillDescription.h:17
PersonSimulator.h
constants.h
CreateHumanPoseWithFaceRecognition.h
VisionX::person_simulator::skills
Definition: constants.h:28
VisionX::person_simulator::core::PersonSimulator::Properties
Fixed properties of this skill implementation.
Definition: PersonSimulator.h:56
skill_ids.h
VisionX::person_simulator::skills::CreateHumanPoseWithFaceRecognition::GetSkillDescription
::armarx::skills::SkillDescription GetSkillDescription()
Definition: CreateHumanPoseWithFaceRecognition.cpp:33
VisionX::person_simulator::core::PersonSimulator::Remote
Remote parameters of this skill implementation.
Definition: PersonSimulator.h:47
VisionX::person_simulator::core::PersonSimulator
The core library for interaction with the person memory. Provides functions for creation and updating...
Definition: PersonSimulator.h:43
armarx::skills::SimpleSpecializedSkill< ::VisionX::person_simulator::skills::arondto::CreateHumanPoseWithFaceRecognitionParams >
armarx::skills::Skill::MainResult
A result struct for th main method of a skill.
Definition: Skill.h:39
armarx::armem::human::HumanPose
Definition: types.h:30
armarx::skills::SimpleSpecializedSkill< ::VisionX::person_simulator::skills::arondto::CreateHumanPoseWithFaceRecognitionParams >::main
Skill::MainResult main() final
Definition: SimpleSpecializedSkill.h:71
armarx::armem::human::HumanPose::keypoints
KeyPointMap keypoints
Definition: types.h:35
armarx::skills::SkillID
Definition: SkillID.h:14
armarx::core::time::Duration::MilliSeconds
static Duration MilliSeconds(std::int64_t milliSeconds)
Constructs a duration in milliseconds.
Definition: Duration.cpp:48