44 defineOptionalProperty<std::string>(
45 "SimulatorProxyName",
"Simulator",
"name of dynamics simulator proxy");
46 defineOptionalProperty<std::string>(
47 "RobotName",
"Armar3",
"Name of robot used for calculating reference frame");
48 defineOptionalProperty<std::string>(
49 "ReferenceFrameName",
"EyeLeftCamera",
"Name of reference frame to use for pose");
52 defineOptionalProperty<float>(
53 "RecognitionCertainty", 0.9f,
"Certainty of recognition used in simulation (0...1).");
54 defineOptionalProperty<bool>(
57 "Whether to simulate camera and checking visibility within camera");
64 usingProxy(getProperty<std::string>(
"SimulatorProxyName").getValue());
66 robotName = getProperty<std::string>(
"RobotName").getValue();
67 frameName = getProperty<std::string>(
"ReferenceFrameName").getValue();
69 recognitionCertainty = getProperty<float>(
"RecognitionCertainty").getValue();
70 performVisibilityCheck = getProperty<bool>(
"VisibilityCheck").getValue();
72 if (performVisibilityCheck)
106 getProxy<SimulatorInterfacePrx>(getProperty<std::string>(
"SimulatorProxyName").getValue());
113 mean.push_back(pos(0));
114 mean.push_back(pos(1));
115 mean.push_back(pos(2));
120 posDist->setMean(
mean);
121 posDist->setCovariance(0, 0, 2.0f);
122 posDist->setCovariance(1, 1, 2.0f);
123 posDist->setCovariance(2, 2, 2.0f);
127 memoryx::ObjectLocalizationResultList
129 const memoryx::ObjectClassNameList& objectClassNames,
133 memoryx::ObjectLocalizationResultList resultList;
139 for (
const auto& className : objectClassNames)
144 ObjectClassInformationSequence objectInstances =
145 simulatorPrx->getObjectClassPoses(robotName, frameName, className);
148 for (
const auto& instanceInfo : objectInstances)
150 memoryx::ObjectLocalizationResult result;
152 result.timeStamp =
new TimestampVariant(instanceInfo.timestampMicroSeconds);
155 result.objectClassName = instanceInfo.className;
161 result.position = position;
162 result.orientation = pose->getOrientation();
166 result.recognitionCertainty = recognitionCertainty;
168 resultList.push_back(result);
192 return "ObjectLocalizerDynamicSimulation";