30 #include <Eigen/Geometry>
32 #include <SimoxUtility/algorithm/get_map_keys_values.h>
33 #include <SimoxUtility/algorithm/string/string_tools.h>
47 #include <VisionX/libraries/armem_human/aron/FaceRecognition.aron.generated.h>
48 #include <VisionX/libraries/armem_human/aron/HumanPose.aron.generated.h>
49 #include <VisionX/libraries/armem_human/aron/Profile.aron.generated.h>
69 def->defineRequiredProperty<std::string>(
"robotName");
84 properties.robotName = this->getProperty<std::string>(
"robotName");
102 PersonMemoryDebugger::run()
104 ARMARX_INFO <<
"Use 'pose [id] [x] [y] [z]' to commit a pose at location";
105 ARMARX_INFO <<
"Use 'face [profile entityName] [x] [y] [z]' to commit a face at location";
106 ARMARX_INFO <<
"Use 'profile [profile entityName]' to commit a profile";
110 if (command ==
"pose")
114 else if (command ==
"face")
116 faceRecognitionCommand();
118 else if (command ==
"profile")
122 else if (command ==
"exit")
135 PersonMemoryDebugger::poseCommand()
137 std::string id, x_s, y_s, z_s;
138 std::cin >>
id >> x_s >> y_s >> z_s;
139 float x = std::stof(x_s);
140 float y = std::stof(y_s);
141 float z = std::stof(z_s);
142 Eigen::Vector3f pos(x, y, z);
147 PersonMemoryDebugger::faceRecognitionCommand()
149 std::string id, x_s, y_s, z_s;
150 std::cin >>
id >> x_s >> y_s >> z_s;
152 auto profileId = findProfileId(
id);
153 if (not profileId.has_value())
158 float x = std::stof(x_s);
159 float y = std::stof(y_s);
160 float z = std::stof(z_s);
162 Eigen::Vector3f pos(x, y, z);
163 commitFaceRecognition(pos, profileId);
167 PersonMemoryDebugger::profileCommand()
175 PersonMemoryDebugger::commitProfile(std::string& name)
185 dto.firstName = name;
192 .entityID = entityId,
193 .instancesData = {dto.toAron()},
200 ARMARX_INFO <<
"Committing profile with name: " << name;
204 std::optional<armarx::armem::MemoryID>
205 PersonMemoryDebugger::findProfileId(std::string& entityId)
212 std::optional<armarx::armem::MemoryID> foundProfileId = std::nullopt;
224 if (foundProfileId.has_value())
233 foundProfileId = instance.id();
237 return foundProfileId;
241 PersonMemoryDebugger::commitFaceRecognition(Eigen::Vector3f& facePosition,
242 std::optional<armarx::armem::MemoryID> profileId)
248 std::stringstream ss;
252 bo.framedPosition3D =
256 bo.position3DGlobal = facePosition;
258 bo.profileID = std::move(profileId);
259 bo.extents2D = Eigen::Vector2i::Zero();
261 armarx::human::arondto::FaceRecognition dto;
269 .entityID = entityId,
270 .instancesData = {dto.toAron()},
279 <<
"Committing face recognition for profile: "
285 PersonMemoryDebugger::commitPose(Eigen::Vector3f& facePosition, std::string& humanId)
309 Eigen::Quaternionf::UnitRandom(),
"camera", properties.robotName),
313 Eigen::Quaternionf::UnitRandom(),
"robot", properties.robotName),
316 .orientationGlobal = defaultOrientation,
326 armarx::human::arondto::HumanPose dto;
330 .entityID = entityId,
331 .instancesData = {dto.toAron()},
338 ARMARX_INFO <<
"Committing pose with HumanID '" << humanId <<
"'.";
345 return "PersonMemoryDebugger";