1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528
|
/*********************************************************************
* Software License Agreement (BSD License)
*
* Copyright (c) 2011, Rice University
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above
* copyright notice, this list of conditions and the following
* disclaimer in the documentation and/or other materials provided
* with the distribution.
* * Neither the name of the Rice University nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
* FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
* COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
* BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
* CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*********************************************************************/
/* Author: Luis G. Torres, Jonathan Gammell */
#include <ompl/base/SpaceInformation.h>
#include <ompl/base/objectives/PathLengthOptimizationObjective.h>
#include <ompl/base/objectives/StateCostIntegralObjective.h>
#include <ompl/base/objectives/MaximizeMinClearanceObjective.h>
#include <ompl/base/spaces/RealVectorStateSpace.h>
// For ompl::msg::setLogLevel
#include "ompl/util/Console.h"
// The supported optimal planners, in alphabetical order
#include <ompl/geometric/planners/bitstar/BITstar.h>
#include <ompl/geometric/planners/cforest/CForest.h>
#include <ompl/geometric/planners/fmt/FMT.h>
#include <ompl/geometric/planners/rrt/InformedRRTstar.h>
#include <ompl/geometric/planners/prm/PRMstar.h>
#include <ompl/geometric/planners/rrt/RRTstar.h>
// For boost program options
#include <boost/program_options.hpp>
// For string comparison (boost::iequals)
#include <boost/algorithm/string.hpp>
// For boost::make_shared
#include <boost/make_shared.hpp>
#include <fstream>
namespace ob = ompl::base;
namespace og = ompl::geometric;
/// @cond IGNORE
// An enum of supported optimal planners, alphabetical order
enum optimalPlanner
{
PLANNER_BITSTAR,
PLANNER_CFOREST,
PLANNER_FMTSTAR,
PLANNER_INF_RRTSTAR,
PLANNER_PRMSTAR,
PLANNER_RRTSTAR
};
// An enum of the supported optimization objectives, alphabetical order
enum planningObjective
{
OBJECTIVE_PATHCLEARANCE,
OBJECTIVE_PATHLENGTH,
OBJECTIVE_THRESHOLDPATHLENGTH,
OBJECTIVE_WEIGHTEDCOMBO
};
// Parse the command-line arguments
bool argParse(int argc, char** argv, double *runTime, optimalPlanner *plannerPtr, planningObjective *objectivePtr, std::string *outputFilePtr);
// Our "collision checker". For this demo, our robot's state space
// lies in [0,1]x[0,1], with a circular obstacle of radius 0.25
// centered at (0.5,0.5). Any states lying in this circular region are
// considered "in collision".
class ValidityChecker : public ob::StateValidityChecker
{
public:
ValidityChecker(const ob::SpaceInformationPtr& si) :
ob::StateValidityChecker(si) {}
// Returns whether the given state's position overlaps the
// circular obstacle
bool isValid(const ob::State* state) const
{
return this->clearance(state) > 0.0;
}
// Returns the distance from the given state's position to the
// boundary of the circular obstacle.
double clearance(const ob::State* state) const
{
// We know we're working with a RealVectorStateSpace in this
// example, so we downcast state into the specific type.
const ob::RealVectorStateSpace::StateType* state2D =
state->as<ob::RealVectorStateSpace::StateType>();
// Extract the robot's (x,y) position from its state
double x = state2D->values[0];
double y = state2D->values[1];
// Distance formula between two points, offset by the circle's
// radius
return sqrt((x-0.5)*(x-0.5) + (y-0.5)*(y-0.5)) - 0.25;
}
};
ob::OptimizationObjectivePtr getPathLengthObjective(const ob::SpaceInformationPtr& si);
ob::OptimizationObjectivePtr getThresholdPathLengthObj(const ob::SpaceInformationPtr& si);
ob::OptimizationObjectivePtr getClearanceObjective(const ob::SpaceInformationPtr& si);
ob::OptimizationObjectivePtr getBalancedObjective1(const ob::SpaceInformationPtr& si);
ob::OptimizationObjectivePtr getBalancedObjective2(const ob::SpaceInformationPtr& si);
ob::OptimizationObjectivePtr getPathLengthObjWithCostToGo(const ob::SpaceInformationPtr& si);
ob::PlannerPtr allocatePlanner(ob::SpaceInformationPtr si, optimalPlanner plannerType)
{
switch (plannerType)
{
case PLANNER_BITSTAR:
{
return boost::make_shared<og::BITstar>(si);
break;
}
case PLANNER_CFOREST:
{
return boost::make_shared<og::CForest>(si);
break;
}
case PLANNER_FMTSTAR:
{
return boost::make_shared<og::FMT>(si);
break;
}
case PLANNER_INF_RRTSTAR:
{
return boost::make_shared<og::InformedRRTstar>(si);
break;
}
case PLANNER_PRMSTAR:
{
return boost::make_shared<og::PRMstar>(si);
break;
}
case PLANNER_RRTSTAR:
{
return boost::make_shared<og::RRTstar>(si);
break;
}
default:
{
OMPL_ERROR("Planner-type enum is not implemented in allocation function.");
return ob::PlannerPtr(); // Address compiler warning re: no return value.
break;
}
}
}
ob::OptimizationObjectivePtr allocateObjective(ob::SpaceInformationPtr si, planningObjective objectiveType)
{
switch (objectiveType)
{
case OBJECTIVE_PATHCLEARANCE:
return getClearanceObjective(si);
break;
case OBJECTIVE_PATHLENGTH:
return getPathLengthObjective(si);
break;
case OBJECTIVE_THRESHOLDPATHLENGTH:
return getThresholdPathLengthObj(si);
break;
case OBJECTIVE_WEIGHTEDCOMBO:
return getBalancedObjective1(si);
break;
default:
OMPL_ERROR("Optimization-objective enum is not implemented in allocation function.");
return ob::OptimizationObjectivePtr();
break;
}
}
void plan(double runTime, optimalPlanner plannerType, planningObjective objectiveType, std::string outputFile)
{
// Construct the robot state space in which we're planning. We're
// planning in [0,1]x[0,1], a subset of R^2.
ob::StateSpacePtr space(new ob::RealVectorStateSpace(2));
// Set the bounds of space to be in [0,1].
space->as<ob::RealVectorStateSpace>()->setBounds(0.0, 1.0);
// Construct a space information instance for this state space
ob::SpaceInformationPtr si(new ob::SpaceInformation(space));
// Set the object used to check which states in the space are valid
si->setStateValidityChecker(ob::StateValidityCheckerPtr(new ValidityChecker(si)));
si->setup();
// Set our robot's starting state to be the bottom-left corner of
// the environment, or (0,0).
ob::ScopedState<> start(space);
start->as<ob::RealVectorStateSpace::StateType>()->values[0] = 0.0;
start->as<ob::RealVectorStateSpace::StateType>()->values[1] = 0.0;
// Set our robot's goal state to be the top-right corner of the
// environment, or (1,1).
ob::ScopedState<> goal(space);
goal->as<ob::RealVectorStateSpace::StateType>()->values[0] = 1.0;
goal->as<ob::RealVectorStateSpace::StateType>()->values[1] = 1.0;
// Create a problem instance
ob::ProblemDefinitionPtr pdef(new ob::ProblemDefinition(si));
// Set the start and goal states
pdef->setStartAndGoalStates(start, goal);
// Create the optimization objective specified by our command-line argument.
// This helper function is simply a switch statement.
pdef->setOptimizationObjective(allocateObjective(si, objectiveType));
// Construct the optimal planner specified by our command line argument.
// This helper function is simply a switch statement.
ob::PlannerPtr optimizingPlanner = allocatePlanner(si, plannerType);
// Set the problem instance for our planner to solve
optimizingPlanner->setProblemDefinition(pdef);
optimizingPlanner->setup();
// attempt to solve the planning problem in the given runtime
ob::PlannerStatus solved = optimizingPlanner->solve(runTime);
if (solved)
{
// Output the length of the path found
std::cout
<< optimizingPlanner->getName()
<< " found a solution of length "
<< pdef->getSolutionPath()->length()
<< " with an optimization objective value of "
<< pdef->getSolutionPath()->cost(pdef->getOptimizationObjective()) << std::endl;
// If a filename was specified, output the path as a matrix to
// that file for visualization
if (!outputFile.empty())
{
std::ofstream outFile(outputFile.c_str());
boost::static_pointer_cast<og::PathGeometric>(pdef->getSolutionPath())->
printAsMatrix(outFile);
outFile.close();
}
}
else
std::cout << "No solution found." << std::endl;
}
int main(int argc, char** argv)
{
// The parsed arguments
double runTime;
optimalPlanner plannerType;
planningObjective objectiveType;
std::string outputFile;
// Parse the arguments, returns true if successful, false otherwise
if (argParse(argc, argv, &runTime, &plannerType, &objectiveType, &outputFile))
{
// Plan
plan(runTime, plannerType, objectiveType, outputFile);
// Return with success
return 0;
}
else
{
// Return with error
return -1;
}
}
/** Returns a structure representing the optimization objective to use
for optimal motion planning. This method returns an objective
which attempts to minimize the length in configuration space of
computed paths. */
ob::OptimizationObjectivePtr getPathLengthObjective(const ob::SpaceInformationPtr& si)
{
return ob::OptimizationObjectivePtr(new ob::PathLengthOptimizationObjective(si));
}
/** Returns an optimization objective which attempts to minimize path
length that is satisfied when a path of length shorter than 1.51
is found. */
ob::OptimizationObjectivePtr getThresholdPathLengthObj(const ob::SpaceInformationPtr& si)
{
ob::OptimizationObjectivePtr obj(new ob::PathLengthOptimizationObjective(si));
obj->setCostThreshold(ob::Cost(1.51));
return obj;
}
/** Defines an optimization objective which attempts to steer the
robot away from obstacles. To formulate this objective as a
minimization of path cost, we can define the cost of a path as a
summation of the costs of each of the states along the path, where
each state cost is a function of that state's clearance from
obstacles.
The class StateCostIntegralObjective represents objectives as
summations of state costs, just like we require. All we need to do
then is inherit from that base class and define our specific state
cost function by overriding the stateCost() method.
*/
class ClearanceObjective : public ob::StateCostIntegralObjective
{
public:
ClearanceObjective(const ob::SpaceInformationPtr& si) :
ob::StateCostIntegralObjective(si, true)
{
}
// Our requirement is to maximize path clearance from obstacles,
// but we want to represent the objective as a path cost
// minimization. Therefore, we set each state's cost to be the
// reciprocal of its clearance, so that as state clearance
// increases, the state cost decreases.
ob::Cost stateCost(const ob::State* s) const
{
return ob::Cost(1 / si_->getStateValidityChecker()->clearance(s));
}
};
/** Return an optimization objective which attempts to steer the robot
away from obstacles. */
ob::OptimizationObjectivePtr getClearanceObjective(const ob::SpaceInformationPtr& si)
{
return ob::OptimizationObjectivePtr(new ClearanceObjective(si));
}
/** Create an optimization objective which attempts to optimize both
path length and clearance. We do this by defining our individual
objectives, then adding them to a MultiOptimizationObjective
object. This results in an optimization objective where path cost
is equivalent to adding up each of the individual objectives' path
costs.
When adding objectives, we can also optionally specify each
objective's weighting factor to signify how important it is in
optimal planning. If no weight is specified, the weight defaults to
1.0.
*/
ob::OptimizationObjectivePtr getBalancedObjective1(const ob::SpaceInformationPtr& si)
{
ob::OptimizationObjectivePtr lengthObj(new ob::PathLengthOptimizationObjective(si));
ob::OptimizationObjectivePtr clearObj(new ClearanceObjective(si));
ob::MultiOptimizationObjective* opt = new ob::MultiOptimizationObjective(si);
opt->addObjective(lengthObj, 10.0);
opt->addObjective(clearObj, 1.0);
return ob::OptimizationObjectivePtr(opt);
}
/** Create an optimization objective equivalent to the one returned by
getBalancedObjective1(), but use an alternate syntax.
*/
ob::OptimizationObjectivePtr getBalancedObjective2(const ob::SpaceInformationPtr& si)
{
ob::OptimizationObjectivePtr lengthObj(new ob::PathLengthOptimizationObjective(si));
ob::OptimizationObjectivePtr clearObj(new ClearanceObjective(si));
return 10.0*lengthObj + clearObj;
}
/** Create an optimization objective for minimizing path length, and
specify a cost-to-go heuristic suitable for this optimal planning
problem. */
ob::OptimizationObjectivePtr getPathLengthObjWithCostToGo(const ob::SpaceInformationPtr& si)
{
ob::OptimizationObjectivePtr obj(new ob::PathLengthOptimizationObjective(si));
obj->setCostToGoHeuristic(&ob::goalRegionCostToGo);
return obj;
}
/** Parse the command line arguments into a string for an output file and the planner/optimization types */
bool argParse(int argc, char** argv, double* runTimePtr, optimalPlanner *plannerPtr, planningObjective *objectivePtr, std::string *outputFilePtr)
{
namespace bpo = boost::program_options;
// Declare the supported options.
bpo::options_description desc("Allowed options");
desc.add_options()
("help,h", "produce help message")
("runtime,t", bpo::value<double>()->default_value(1.0), "(Optional) Specify the runtime in seconds. Defaults to 1 and must be greater than 0.")
("planner,p", bpo::value<std::string>()->default_value("RRTstar"), "(Optional) Specify the optimal planner to use, defaults to RRTstar if not given. Valid options are BITstar, CForest, FMTstar, InformedRRTstar, PRMstar, and RRTstar.") //Alphabetical order
("objective,o", bpo::value<std::string>()->default_value("PathLength"), "(Optional) Specify the optimization objective, defaults to PathLength if not given. Valid options are PathClearance, PathLength, ThresholdPathLength, and WeightedLengthAndClearanceCombo.") //Alphabetical order
("file,f", bpo::value<std::string>()->default_value(""), "(Optional) Specify an output path for the found solution path.")
("info,i", bpo::value<unsigned int>()->default_value(0u), "(Optional) Set the OMPL log level. 0 for WARN, 1 for INFO, 2 for DEBUG. Defaults to WARN.");
bpo::variables_map vm;
bpo::store(bpo::parse_command_line(argc, argv, desc), vm);
bpo::notify(vm);
// Check if the help flag has been given:
if (vm.count("help"))
{
std::cout << desc << std::endl;
return false;
}
// Set the log-level
unsigned int logLevel = vm["info"].as<unsigned int>();
// Switch to setting the log level:
if (logLevel == 0u)
{
ompl::msg::setLogLevel(ompl::msg::LOG_WARN);
}
else if (logLevel == 1u)
{
ompl::msg::setLogLevel(ompl::msg::LOG_INFO);
}
else if (logLevel == 2u)
{
ompl::msg::setLogLevel(ompl::msg::LOG_DEBUG);
}
else
{
std::cout << "Invalid log-level integer." << std::endl << std::endl << desc << std::endl;
return false;
}
// Get the runtime as a double
*runTimePtr = vm["runtime"].as<double>();
// Sanity check
if (*runTimePtr <= 0.0)
{
std::cout << "Invalid runtime." << std::endl << std::endl << desc << std::endl;
return false;
}
// Get the specified planner as a string
std::string plannerStr = vm["planner"].as<std::string>();
// Map the string to the enum
if (boost::iequals("BITstar", plannerStr))
{
*plannerPtr = PLANNER_BITSTAR;
}
else if (boost::iequals("CForest", plannerStr))
{
*plannerPtr = PLANNER_CFOREST;
}
else if (boost::iequals("FMTstar", plannerStr))
{
*plannerPtr = PLANNER_FMTSTAR;
}
else if (boost::iequals("InformedRRTstar", plannerStr))
{
*plannerPtr = PLANNER_INF_RRTSTAR;
}
else if (boost::iequals("PRMstar", plannerStr))
{
*plannerPtr = PLANNER_PRMSTAR;
}
else if (boost::iequals("RRTstar", plannerStr))
{
*plannerPtr = PLANNER_RRTSTAR;
}
else
{
std::cout << "Invalid planner string." << std::endl << std::endl << desc << std::endl;
return false;
}
// Get the specified objective as a string
std::string objectiveStr = vm["objective"].as<std::string>();
// Map the string to the enum
if (boost::iequals("PathClearance", objectiveStr))
{
*objectivePtr = OBJECTIVE_PATHCLEARANCE;
}
else if (boost::iequals("PathLength", objectiveStr))
{
*objectivePtr = OBJECTIVE_PATHLENGTH;
}
else if (boost::iequals("ThresholdPathLength", objectiveStr))
{
*objectivePtr = OBJECTIVE_THRESHOLDPATHLENGTH;
}
else if (boost::iequals("WeightedLengthAndClearanceCombo", objectiveStr))
{
*objectivePtr = OBJECTIVE_WEIGHTEDCOMBO;
}
else
{
std::cout << "Invalid objective string." << std::endl << std::endl << desc << std::endl;
return false;
}
// Get the output file string and store it in the return pointer
*outputFilePtr = vm["file"].as<std::string>();
// Looks like we parsed the arguments successfully
return true;
}
/// @endcond
|