5 #include <SimoxUtility/color/Color.h>
19 #include <range/v3/range/conversion.hpp>
20 #include <range/v3/view/reverse.hpp>
37 const ShortestPathFasterAlgorithm spfa(obstacleDistancesCostmap,
40 ShortestPathFasterAlgorithm::Result result = spfa.spfa(
conv::to2D(global_P_robot));
44 obstacleDistancesCostmap.
params(),
51 const std::size_t cX = roomCostmap.
getGrid().rows();
52 const std::size_t cY = roomCostmap.
getGrid().cols();
57 #pragma omp parallel for schedule(static)
58 for (
unsigned int x = 0; x < cX; x++)
60 for (
unsigned int y = 0; y < cY; y++)
69 const bool isInside = room.
isInside(pos3d);
72 roomCostmap.
getMutableGrid()(x, y) *=
static_cast<float>(isInside);
83 const auto plan = spfa.plan(
conv::to2D(global_P_robot),
84 conv::to2D(closestReachablePositionOnRoomBoundary));
88 auto layer = arviz->
layer(
"RoomNavigationTargetCreator");
91 layer.add(
viz::Sphere(
"closestReachablePositionOnRoomBoundary")
92 .position(closestReachablePositionOnRoomBoundary)
94 .color(simox::Color::blue()));
104 namespace r = ::ranges;
105 namespace rv = ::ranges::views;
107 const auto reversedPlan =
rv::reverse(plan.path) | r::to_vector;
109 const auto goalPos =
conv::to2D(closestReachablePositionOnRoomBoundary);
111 for (
const auto& pos : reversedPlan)
119 ARMARX_INFO <<
"There is something wrong with the path!";
123 if (arviz !=
nullptr)
125 auto layer = arviz->
layer(
"RoomNavigationTargetCreator_target");
135 return {.global_P_roomEntry = closestReachablePositionOnRoomBoundary,
136 .global_P_robot = posInFrontOfRoom};