31 #include <Ice/LocalException.h>
33 #include <SimoxUtility/color/Color.h>
34 #include <SimoxUtility/color/GlasbeyLUT.h>
53 #include <RobotAPI/libraries/armem_locations/aron/Location.aron.generated.h>
58 #include <armarx/navigation/algorithms/aron/Room.aron.generated.h>
64 #include <armarx/navigation/core/aron/Graph.aron.generated.h>
67 #include <armarx/navigation/human/aron/Human.aron.generated.h>
81 locSegment(locSegment),
82 graphSegment(graphSegment),
83 costmapSegment(costmapSegment),
84 humanSegment(humanSegment),
85 roomsSegment(roomsSegment),
86 visu(
std::make_unique<graph::GraphVisu>())
96 const std::vector<ObjectInfo>& info,
99 using namespace armem::server;
101 std::map<armem::MemoryID, location::arondto::Location> locations;
110 locations[entity.id()].fromAron(instance->data());
115 for (
auto& [
id, location] : locations)
118 fromAron(location.framedPose, framedPose);
121 if (res.pose.has_value())
123 visu->vertex->draw(layer,
id.
str(), res.pose.value());
130 const std::vector<ObjectInfo>& info,
131 std::vector<viz::Layer>& layers,
134 using namespace armem::server;
136 std::map<armem::MemoryID, core::Graph> graphs;
141 [&](
const wm::Entity& entity)
148 navigation::core::arondto::Graph aron;
149 aron.fromAron(instance->data());
150 fromAron(aron, graph);
157 for (
auto& [
id, graph] : graphs)
163 visu->draw(layer, graph, {objects, info});
176 const std::vector<ObjectInfo> info;
183 std::vector<viz::Layer>& layers,
196 const std::vector<ObjectInfo> info = objectFinder.findAllObjects();
200 catch (const ::Ice::NotRegisteredException& e)
202 ARMARX_VERBOSE <<
"Failed to retrieve objects from ObjectMemory: " << e.what();
211 const std::vector<ObjectInfo> info;
217 std::vector<viz::Layer>& layers,
229 const std::vector<ObjectInfo> info = objectFinder.findAllObjects();
233 catch (const ::Ice::NotRegisteredException& e)
235 ARMARX_VERBOSE <<
"Failed to retrieve objects from ObjectMemory: " << e.what();
247 const Eigen::Translation3f human_T_mmm(Eigen::Vector3f{0, 0, 1000});
250 for (
const auto& human : humans)
264 mmm.file(
"RobotAPI",
"RobotAPI/robots/MMM/mmm.xml");
271 if (human.linearVelocity != Eigen::Vector2f::Zero())
274 vel3d.translation().head<2>() += human.linearVelocity * 2;
276 .fromTo(human3d.translation(), vel3d.translation())
293 std::map<std::string, std::vector<std::pair<std::string, algorithms::Costmap>>>
294 namedProviderCostmaps;
299 using namespace armem::server;
307 lastCostmapVisualization_.find(instance->id().getEntityID().str());
309 if (it == lastCostmapVisualization_.end() ||
310 it->second < instance->id().timestamp)
312 navigation::algorithms::Costmap costmap =
313 algorithms::fromAron(*instance);
315 namedProviderCostmaps[instance->id().providerSegmentName]
316 .emplace_back(instance->id().entityName, std::move(costmap));
318 lastCostmapVisualization_[instance->id().getEntityID().str()] =
319 instance->id().timestamp;
325 for (
const auto& [providerName, namedCostmaps] : namedProviderCostmaps)
327 for (
const auto& [name, costmap] : namedCostmaps)
330 layers.emplace_back(
arviz.
layer(
"costmaps_" + providerName +
"_" + name));
339 using namespace armem::server;
341 std::map<armem::MemoryID, algorithms::Room>
rooms;
353 navigation::algorithms::arondto::Room aron;
354 aron.fromAron(instance->data());
355 fromAron(aron, room);
363 for (
auto& [
id, room] :
rooms)
368 const auto color = simox::color::GlasbeyLUT::at(i++);
370 drawRoom(layer, room, color);
382 for (
const auto& point : room.
polygon)
391 polygon.color(color.with_alpha(50));
392 polygon.lineColor(simox::Color::black());
393 polygon.lineWidth(0);
403 const bool visuTransparent,
411 std::map<std::string, navigation::human::Humans> namedProviderHumans;
417 using namespace armem::server;
422 namedProviderHumans[entity.
id().providerSegmentName];
424 [&namedProviderHumans, ×tamp, &maxAge](
428 timestamp - instance.
metadata().referencedTime;
430 if (dtToNow < maxAge and dtToNow.
isPositive())
432 const auto dto = navigation::human::arondto::Human::FromAron(
435 navigation::human::Human human;
436 fromAron(dto, human);
438 namedProviderHumans[instance.id().providerSegmentName]
439 .emplace_back(std::move(human));
445 for (
const auto& [providerName, humans] : namedProviderHumans)
448 visualize(humans, layer, visuTransparent);