10 #include <boost/geometry.hpp>
11 #include <boost/geometry/algorithms/detail/intersects/interface.hpp>
12 #include <boost/geometry/core/cs.hpp>
13 #include <boost/geometry/geometries/box.hpp>
14 #include <boost/geometry/geometries/point.hpp>
16 #include <Eigen/Geometry>
18 #include <VirtualRobot/BoundingBox.h>
28 #include <range/v3/algorithm/reverse.hpp>
30 namespace bg = boost::geometry;
36 intersects(
const VirtualRobot::BoundingBox& bb1,
const VirtualRobot::BoundingBox& bb2)
38 using point_t = bg::model::point<double, 3, bg::cs::cartesian>;
39 using box_t = bg::model::box<point_t>;
41 const auto toPoint = [](
const Eigen::Vector3f& pt)
42 {
return point_t(pt.x(), pt.y(), pt.z()); };
57 return (1.
F - obstacleDistanceWeightFactor) * (n1->position - n2->position).
norm();
61 AStarPlanner::createUniformGrid()
65 const size_t rows = costmap.
getGrid().rows();
66 const size_t cols = costmap.
getGrid().cols();
70 for (
size_t r = 0; r < rows; r++)
72 grid.push_back(std::vector<NodePtr>(cols));
76 for (
size_t r = 0; r < rows; r++)
78 for (
size_t c = 0;
c < cols;
c++)
81 const float obstacleDistance = costmap.
getGrid()(r,
c);
83 grid[r][
c] = std::make_shared<Node>(pos, obstacleDistance);
90 for (
size_t r = 0; r < rows; r++)
92 for (
size_t c = 0;
c < cols;
c++)
95 if (!fulfillsConstraints(candidate))
101 for (
int nR = -1; nR <= 1; nR++)
103 for (
int nC = -1; nC <= 1; nC++)
105 const int neighborIndexC =
c + nC;
106 const int neighborIndexR = r + nR;
107 if (neighborIndexC < 0 || neighborIndexR < 0 || (nR == 0 && nC == 0))
112 if (neighborIndexR >=
static_cast<int>(rows) ||
113 neighborIndexC >=
static_cast<int>(cols))
118 grid[neighborIndexR][neighborIndexC]->successors.push_back(candidate);
128 AStarPlanner::fulfillsConstraints(
const NodePtr& n)
137 AStarPlanner::closestNode(
const Eigen::Vector2f&
v)
141 const int r = vertex.
index.x();
142 const int c = vertex.index.y();
147 const int rows =
static_cast<int>(costmap.
getGrid().rows());
148 const int cols =
static_cast<int>(costmap.
getGrid().cols());
153 return grid[
static_cast<int>(r)][
static_cast<int>(
c)];
156 std::vector<Eigen::Vector2f>
161 std::vector<Eigen::Vector2f> result;
164 ARMARX_DEBUG <<
"Setting start node for position " << start;
165 NodePtr nodeStart = closestNode(start);
168 ARMARX_DEBUG <<
"Setting goal node for position " << goal;
169 NodePtr nodeGoal = closestNode(goal);
170 ARMARX_CHECK(fulfillsConstraints(nodeGoal)) <<
"Goal node in collision!";
172 std::vector<NodePtr> closedSet;
174 std::vector<NodePtr> openSet;
175 openSet.push_back(nodeStart);
177 std::map<NodePtr, float> gScore;
178 gScore[nodeStart] = 0;
180 std::map<NodePtr, float> fScore;
181 fScore[nodeStart] = gScore[nodeStart] + heuristic(nodeStart, nodeGoal);
183 while (!openSet.empty())
185 float lowestScore = fScore[openSet[0]];
186 auto currentIT = openSet.begin();
187 for (
auto it = openSet.begin() + 1; it != openSet.end(); it++)
189 if (fScore[*it] < lowestScore)
191 lowestScore = fScore[*it];
195 NodePtr currentBest = *currentIT;
196 if (currentBest == nodeGoal)
201 openSet.erase(currentIT);
202 closedSet.push_back(currentBest);
203 for (
size_t i = 0; i < currentBest->successors.size(); i++)
205 NodePtr neighbor = currentBest->successors[i];
206 if (std::find(closedSet.begin(), closedSet.end(), neighbor) != closedSet.end())
211 float tentativeGScore = gScore[currentBest] + costs(currentBest, neighbor);
212 bool notInOS = std::find(openSet.begin(), openSet.end(), neighbor) == openSet.end();
213 if (notInOS || tentativeGScore < gScore[neighbor])
215 neighbor->predecessor = currentBest;
216 gScore[neighbor] = tentativeGScore;
217 fScore[neighbor] = tentativeGScore + heuristic(neighbor, nodeGoal);
220 openSet.push_back(neighbor);
229 result = nodeGoal->traversePredecessors();
244 const float obstacleDistanceN1 =
std::min(n1->obstacleDistance, maxObstacleDistance);
245 const float obstacleDistanceN2 =
std::min(n2->obstacleDistance, maxObstacleDistance);
248 const float obstacleProximityChangeCosts = obstacleDistanceN1 - obstacleDistanceN2;