hpp-core
4.13.0
Implement basic classes for canonical path planning for kinematic chains.
|
#include <hpp/core/path-planner/bi-rrt-star.hh>
Public Types | |
typedef PathPlanner | Parent_t |
Public Member Functions | |
void | startSolve () |
void | oneStep () |
One step of the algorithm. More... | |
![]() | |
virtual | ~PathPlanner () |
virtual const RoadmapPtr_t & | roadmap () const |
Get roadmap. More... | |
ProblemConstPtr_t | problem () const |
Get problem. More... | |
virtual PathVectorPtr_t | solve () |
virtual void | tryConnectInitAndGoals () |
Try to connect initial and goal configurations to existing roadmap. More... | |
virtual PathVectorPtr_t | finishSolve (const PathVectorPtr_t &path) |
Post processing of the resulting path. More... | |
void | interrupt () |
Interrupt path planning. More... | |
void | maxIterations (const unsigned long int &n) |
Set maximal number of iterations. More... | |
void | timeOut (const double &timeOut) |
set time out (in seconds) More... | |
void | stopWhenProblemIsSolved (bool enable) |
PathVectorPtr_t | computePath () const |
Find a path in the roadmap and transform it in trajectory. More... | |
Static Public Member Functions | |
static BiRrtStarPtr_t | create (const ProblemConstPtr_t &problem) |
static BiRrtStarPtr_t | createWithRoadmap (const ProblemConstPtr_t &problem, const RoadmapPtr_t &roadmap) |
Protected Member Functions | |
BiRrtStar (const ProblemConstPtr_t &problem) | |
BiRrtStar (const ProblemConstPtr_t &problem, const RoadmapPtr_t &roadmap) | |
void | init (const BiRrtStarWkPtr_t &weak) |
Store weak pointer to itself. More... | |
![]() | |
PathPlanner (const ProblemConstPtr_t &problem) | |
PathPlanner (const ProblemConstPtr_t &problem, const RoadmapPtr_t &roadmap) | |
void | init (const PathPlannerWkPtr_t &weak) |
Store weak pointer to itself. More... | |
Bi-RRT* path planning algorithm as described in http://www.golems.org/papers/AkgunIROS11-sampling.pdf
|
protected |
Protected constructor
problem | the path planning problem |
|
protected |
Protected constructor
problem | the path planning problem |
roadmap | previously built roadmap |
|
static |
Return shared pointer to new instance
problem | the path planning problem |
|
static |
Return shared pointer to new instance
problem | the path planning problem |
roadmap | previously built roadmap |
|
protected |
Store weak pointer to itself.
|
virtual |
One step of the algorithm.
Implements hpp::core::PathPlanner.
|
virtual |
Initialize the problem resolution
Reimplemented from hpp::core::PathPlanner.