31 #include <Eigen/Geometry>
32 #include <Eigen/src/Core/Matrix.h>
34 #include <SimoxUtility/math/convert/deg_to_rad.h>
35 #include <SimoxUtility/math/convert/rad_to_deg.h>
36 #include <VirtualRobot/VirtualRobot.h>
43 #include <VisionX/libraries/armem_human/aron/FaceRecognition.aron.generated.h>
44 #include <VisionX/libraries/armem_human/aron/HumanPose.aron.generated.h>
45 #include <VisionX/libraries/armem_human/aron/Profile.aron.generated.h>
56 remote(r), properties(p)
59 generatedPoseParams = {
61 .pelvisHeight = 1000.F,
62 .shoulderHeight = 1600.F,
88 .instancesData = {dto.toAron()},
95 ARMARX_INFO <<
"Committing profile with name: " << name;
99 std::optional<armarx::armem::MemoryID>
107 std::optional<armarx::armem::MemoryID> foundProfileId = std::nullopt;
119 if (foundProfileId.has_value())
128 foundProfileId = instance.id();
132 return foundProfileId;
136 PersonSimulator::increaseAndConvert(
unsigned int& counter)
138 std::stringstream ss;
145 std::optional<std::string> entityName)
147 ARMARX_INFO <<
"Creating face recognition at cartesian position: " << facePosition.x()
148 <<
", " << facePosition.y() <<
", " << facePosition.z();
153 std::optional<armarx::armem::MemoryID> profileId = std::nullopt;
155 if (entityName.has_value())
164 bo.position3DGlobal = facePosition;
166 bo.profileID = profileId;
168 armarx::human::arondto::FaceRecognition dto;
173 .
withEntityName(entityName.value_or(increaseAndConvert(faceRecognitionIdCounter)));
176 .entityID = entityId,
177 .instancesData = {dto.toAron()},
186 <<
"Committing face recognition for profile: "
193 Eigen::Vector2f meanFloorPosition,
194 float clockwiseOrientationDegrees)
196 ARMARX_INFO <<
"Creating human pose at cartesian position: " << meanFloorPosition.x()
197 <<
", " << meanFloorPosition.y();
207 Eigen::Quaternionf::UnitRandom(),
"global",
"Armar7");
212 constructDefaultKeypoints(std::move(meanFloorPosition), clockwiseOrientationDegrees);
218 armarx::human::arondto::HumanPose dto;
222 .entityID = entityId,
223 .instancesData = {dto.toAron()},
230 ARMARX_INFO <<
"Committing pose with HumanID '" << humanId <<
"'.";
237 Eigen::Vector2f meanFloorPosition)
242 const auto robotPose =
244 const Eigen::Vector3f robotPosition = robotPose->translation();
246 Eigen::Vector2f robot2d{robotPosition.x(), robotPosition.y()};
247 Eigen::Vector2f diff = robot2d - meanFloorPosition;
249 Eigen::Vector2f forwards = Eigen::Vector2f::UnitY();
252 const float dot = diff.dot(forwards);
253 const float cos_angle =
dot;
254 float angle = acosf(cos_angle);
267 std::map<std::string, armarx::armem::human::PoseKeypoint>
268 PersonSimulator::constructDefaultKeypoints(Eigen::Vector2f meanFloorPosGlobal,
269 float clockwiseOrientationDegrees)
277 auto rotateGlobalVector =
278 [&clockwiseOrientationDegrees, &meanFloorPosGlobal](Eigen::Vector3f globalPosition)
281 const Eigen::Vector3f projectedMean(
282 meanFloorPosGlobal.x(), meanFloorPosGlobal.y(), 0.F);
284 Eigen::Vector3f verticalAxis = Eigen::Vector3f::UnitZ();
285 Eigen::AngleAxisf verticalAxisRotation = Eigen::AngleAxisf(
286 -1.
F * simox::math::deg_to_rad(clockwiseOrientationDegrees), verticalAxis);
289 const Eigen::Vector3f localPosition = globalPosition - projectedMean;
291 const Eigen::Vector3f rotatedLocalPos =
292 verticalAxisRotation.toRotationMatrix() * localPosition;
294 const Eigen::Vector3f rotatedGlobalPos = rotatedLocalPos + projectedMean;
295 return rotatedGlobalPos;
301 auto setSymmetricJointsAtHeight = [&](std::string label,
float height)
304 const std::string left_sf =
"Left";
305 const std::string right_sf =
"Right";
307 Eigen::Vector3f leftPos =
308 Eigen::Vector3f(meanFloorPosGlobal.x() - properties.jointDisplacement,
309 meanFloorPosGlobal.y(),
311 Eigen::Vector3f rightPos =
312 Eigen::Vector3f(meanFloorPosGlobal.x() + properties.jointDisplacement,
313 meanFloorPosGlobal.y(),
315 leftPos = rotateGlobalVector(leftPos);
316 rightPos = rotateGlobalVector(rightPos);
317 keypoints[label + left_sf] = constructKeyPoint(leftPos, label + left_sf);
318 keypoints[label + right_sf] = constructKeyPoint(rightPos, label + right_sf);
322 auto setSingleJointAtHeight = [&](std::string label,
float height)
324 Eigen::Vector3f pos =
325 Eigen::Vector3f(meanFloorPosGlobal.x(), meanFloorPosGlobal.y(), height);
326 keypoints[label] = constructKeyPoint(pos, label);
332 keypoints[joint] = constructKeyPoint(
333 Eigen::Vector3f(meanFloorPosGlobal.x(), meanFloorPosGlobal.y(), 0.F), joint);
339 setSymmetricJointsAtHeight(
"Shoulder", generatedPoseParams.shoulderHeight);
342 setSymmetricJointsAtHeight(
"Hip", generatedPoseParams.hipHeight);
345 setSymmetricJointsAtHeight(
"Ear", generatedPoseParams.earHeight);
348 setSingleJointAtHeight(
"Pelvis", generatedPoseParams.pelvisHeight);
349 setSingleJointAtHeight(
"Head", generatedPoseParams.headHeight);
352 keypoints[
"WristRight"] = constructKeyPoint(
353 rotateGlobalVector({meanFloorPosGlobal.x() + properties.jointDisplacement,
354 meanFloorPosGlobal.y() + 100,
355 generatedPoseParams.hipHeight}),
363 PersonSimulator::constructKeyPoint(Eigen::Vector3f globalPos,
const std::string& label)
366 auto makeDefaultOrientation = [&](std::string frameName)
371 auto makeDefaultPosition = [&](std::string frameName)
381 .positionCamera = makeDefaultPosition(
"camera"),
382 .orientationCamera = makeDefaultOrientation(
"camera"),
383 .positionRobot = makeDefaultPosition(
"robot"),
384 .orientationRobot = makeDefaultOrientation(
"robot"),
386 .orientationGlobal = makeDefaultOrientation(
"global"),