31 #include <mrpt/examples_config.h> 34 MRPT_EXAMPLES_BASE_DIRECTORY +
35 string(
"../share/mrpt/datasets/2006-MalagaCampus.gridmap.gz"));
48 printf(
"Loading gridmap...");
62 std::deque<TPoint2D> thePath;
69 cout <<
"Origin: " << origin << endl;
70 cout <<
"Target: " << target << endl;
72 cout <<
"Searching path...";
76 pathPlanning.computePath(
77 gridmap, origin, target, thePath, notFound, 100.0f );
79 double t = tictac.
Tac();
80 cout <<
"Done in " << t * 1000 <<
" ms" << endl;
82 printf(
"Path found: %s\n", notFound ?
"NO" :
"YES");
83 printf(
"Path has %u steps\n", (
unsigned)thePath.size());
93 for (std::deque<TPoint2D>::const_iterator it = thePath.begin();
94 it != thePath.end(); ++it)
100 gridmap.
x2idx(origin.x()),
102 TColor(0x20, 0x20, 0x20),
'+', 10);
104 gridmap.
x2idx(target.x()),
106 TColor(0x50, 0x50, 0x50),
'x', 10);
108 const std::string dest =
"path_planning.png";
109 cout <<
"Saving output to: " << dest << endl;
110 img.saveToFile(dest);
113 #if MRPT_HAS_WXWIDGETS 115 win.setImageView(img);
131 cout <<
"MRPT exception caught: " << e.what() << endl;
136 printf(
"Another exception!!");
float getXMax() const
Returns the "x" coordinate of right side of grid map.
double Tac() noexcept
Stops the stopwatch.
float getYMin() const
Returns the "y" coordinate of top side of grid map.
float getResolution() const
Returns the resolution of the grid map.
bool fileExists(const std::string &fileName)
Test if a given file (or directory) exists.
A high-performance stopwatch, with typical resolution of nanoseconds.
float robotRadius
The aproximate robot radius used in the planification.
Searches for collision-free path in 2D occupancy grids for holonomic circular robots.
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT's CStream, std::istream, std::ostream, std::stringstream.
This base provides a set of functions for maths stuff.
float getXMin() const
Returns the "x" coordinate of left side of grid map.
mrpt::gui::CDisplayWindow3D::Ptr win
Classes for 2D/3D geometry representation, both of single values and probability density distribution...
A class for storing an occupancy grid map.
void getAsImage(mrpt::img::CImage &img, bool verticalFlip=false, bool forceRGB=false, bool tricolor=false) const
Returns the grid as a 8-bit graylevel image, where each pixel is a cell (output image is RGB only if ...
string myGridMap(MRPT_EXAMPLES_BASE_DIRECTORY+string("../share/mrpt/datasets/2006-MalagaCampus.gridmap.gz"))
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
A class used to store a 2D pose, including the 2D coordinate point and a heading (phi) angle...
float getYMax() const
Returns the "y" coordinate of bottom side of grid map.
void Tic() noexcept
Starts the stopwatch.
unsigned int getSizeY() const
Returns the vertical size of grid map in cells count.
#define THROW_EXCEPTION_FMT(_FORMAT_STRING,...)
int x2idx(float x) const
Transform a coordinate value into a cell index.
A class for storing images as grayscale or RGB bitmaps.
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.
int round(const T value)
Returns the closer integer (int) to x.