MRPT  2.0.1
test.cpp
Go to the documentation of this file.
1 /* +------------------------------------------------------------------------+
2  | Mobile Robot Programming Toolkit (MRPT) |
3  | https://www.mrpt.org/ |
4  | |
5  | Copyright (c) 2005-2020, Individual contributors, see AUTHORS file |
6  | See: https://www.mrpt.org/Authors - All rights reserved. |
7  | Released under BSD License. See: https://www.mrpt.org/License |
8  +------------------------------------------------------------------------+ */
9 
13 #include <mrpt/maps/CSimpleMap.h>
14 #include <mrpt/nav.h>
15 #include <mrpt/random.h>
17 #include <mrpt/system/filesystem.h> // directoryExists(), ...
18 
19 #include <iostream>
20 
21 using namespace mrpt;
22 using namespace mrpt::nav;
23 using namespace mrpt::maps;
24 using namespace std;
25 
26 // Load example grid map
27 #include <mrpt/examples_config.h>
28 string mySimpleMap(
29  MRPT_EXAMPLES_BASE_DIRECTORY +
30  string("../share/mrpt/datasets/malaga-cs-fac-building.simplemap.gz"));
31 string myCfgFileName(
32  MRPT_EXAMPLES_BASE_DIRECTORY +
33  string("../share/mrpt/config_files/navigation-ptgs/"
34  "ptrrt_config_example1.ini"));
35 
36 // ------------------------------------------------------
37 // TestRRT1
38 // ------------------------------------------------------
39 void TestRRT1()
40 {
42 
43  // Load the gridmap:
44  CSimpleMap simplemap;
45 
47 
48  cout << "Loading map...";
49  {
51  auto arch = mrpt::serialization::archiveFrom(f);
52  arch >> simplemap;
53  }
54  cout << "Done! Number of sensory frames: " << simplemap.size() << endl;
55 
56  // Set planner params:
57  // ------------------------------
59 
60  // Parameters:
62 
63  planner.params.maxLength = 2.0;
64  planner.params.minDistanceBetweenNewNodes = 0.10;
66  planner.params.goalBias = 0.05;
67 
68  // Logging:
69  planner.params.save_3d_log_freq =
70  0; // 500; // save some iterations for debugging
71 
72  // End criteria:
73  planner.end_criteria.acceptedDistToTarget = 0.25;
75  180.0_deg; // 180d=Any orientation is ok
76  planner.end_criteria.maxComputationTime = 15.0;
78  1.0; // 0=accept first found acceptable solution
79 
80  // Init planner:
81  // ------------------------------
82  planner.initialize();
83 
84  // Set up planning problem:
85  // ------------------------------
88 
89  // Start & goal:
90  planner_input.start_pose = mrpt::math::TPose2D(0, 0, 0);
91  planner_input.goal_pose = mrpt::math::TPose2D(-20, -30, 0);
92 
93  // Obstacles:
94  planner_input.obstacles_points.loadFromSimpleMap(simplemap);
95  mrpt::math::TPoint3D bbox_min, bbox_max;
96  planner_input.obstacles_points.boundingBox(bbox_min, bbox_max);
97  // Convert gridmap -> obstacle points:
98  // gridmap.getAsPointCloud( planner_input.obstacles_points );
99 
100  // Workspace bounding box:
101  planner_input.world_bbox_min = mrpt::math::TPoint2D(bbox_min.x, bbox_min.y);
102  planner_input.world_bbox_max = mrpt::math::TPoint2D(bbox_max.x, bbox_max.y);
103 
104 // size_t iters=0;
105 // Show results in a GUI and keep improving:
106 #if MRPT_HAS_WXWIDGETS
107  mrpt::gui::CDisplayWindow3D win("Result", 1024, 800);
108  while (win.isOpen())
109 #else
110  for (size_t i = 0; i < 1; i++)
111 #endif
112  {
113  // Refine solution or start over:
114  bool refine_solution = false; // (iters++ % 5 != 0);
115 
116  // Start from scratch:
117  if (!refine_solution)
118  planner_result = PlannerRRT_SE2_TPS::TPlannerResult();
119 
120  // Do path planning:
121  planner.solve(planner_input, planner_result);
122 
123  cout << "Found goal_distance: " << planner_result.goal_distance << endl;
124  cout << "Found path_cost: " << planner_result.path_cost << endl;
125  cout << "Acceptable goal nodes: "
126  << planner_result.acceptable_goal_node_ids.size() << endl;
127 
128 #if MRPT_HAS_WXWIDGETS
129  // Show result in a GUI:
130  mrpt::opengl::COpenGLScene::Ptr& scene = win.get3DSceneAndLock();
131 
132  scene->clear();
133 
134  PlannerRRT_SE2_TPS::TRenderPlannedPathOptions render_opts;
135  render_opts.highlight_path_to_node_id =
136  planner_result.best_goal_node_id;
137 
138  planner.renderMoveTree(
139  *scene, planner_input, planner_result, render_opts);
140 
141  win.unlockAccess3DScene();
142  win.repaint();
143  win.waitForKey();
144 #endif
145  }
146 }
147 
148 int main(int argc, char** argv)
149 {
150  try
151  {
152  TestRRT1();
153  return 0;
154  }
155  catch (exception& e)
156  {
157  cout << "MRPT exception caught: " << e.what() << endl;
158  return -1;
159  }
160  catch (...)
161  {
162  printf("Another exception!!");
163  return -1;
164  }
165 }
double minComputationTime
In seconds.
TPoint2D_< double > TPoint2D
Lightweight 2D point.
Definition: TPoint2D.h:213
double minDistanceBetweenNewNodes
Minimum distance [meters] to nearest node to accept creating a new one (default=0.10).
std::set< mrpt::graphs::TNodeID > acceptable_goal_node_ids
The set of target nodes within an acceptable distance to target (including best_goal_node_id and othe...
mrpt::graphs::TNodeID best_goal_node_id
The ID of the best target node in the tree.
This class stores a sequence of <Probabilistic Pose,SensoryFrame> pairs, thus a "metric map" can be t...
Definition: CSimpleMap.h:32
double maxLength
(Very sensitive parameter!) Max length of each edge path (in meters, default=1.0) ...
This class allows loading and storing values and vectors of different types from ".ini" files easily.
double minAngBetweenNewNodes
Minimum angle [rad] to nearest node to accept creating a new one (default=15 deg) (Any of minDistance...
world_limits_t world_bbox_min
Bounding box of the world, used to draw uniform random pose samples.
STL namespace.
size_t save_3d_log_freq
Frequency (in iters) of saving tree state to debug log files viewable in SceneViewer3D (default=0...
void initialize()
Must be called after setting all params (see loadConfig()) and before calling solve() ...
double acceptedAngToTarget
Maximum angle from a pose to target to accept it as a valid solution (rad).
CArchiveStreamBase< STREAM > archiveFrom(STREAM &s)
Helper function to create a templatized wrapper CArchive object for a: MRPT&#39;s CStream, std::istream, std::ostream, std::stringstream.
Definition: CArchive.h:592
constexpr double DEG2RAD(const double x)
Degrees to radians.
void Randomize(const uint32_t seed)
Randomize the generators.
double acceptedDistToTarget
Maximum distance from a pose to target to accept it as a valid solution (meters). ...
size_t size() const
Returns the count of pairs (pose,sensory data)
Definition: CSimpleMap.cpp:53
mrpt::gui::CDisplayWindow3D::Ptr win
void loadConfig(const mrpt::config::CConfigFileBase &cfgSource, const std::string &sSectionName=std::string("PTG_CONFIG"))
Load all params from a config file source.
double path_cost
Total cost of the best found path (cost ~~ Euclidean distance)
void boundingBox(float &min_x, float &max_x, float &min_y, float &max_y, float &min_z, float &max_z) const
Computes the bounding box of all the points, or (0,0 ,0,0, 0,0) if there are no points.
Definition: CPointsMap.cpp:914
void solve(const TPlannerInput &pi, TPlannerResult &result)
The main API entry point: tries to find a planned path from &#39;goal&#39; to &#39;target&#39;.
T x
X,Y,Z coordinates.
Definition: TPoint3D.h:29
double maxComputationTime
In seconds.
This is the global namespace for all Mobile Robot Programming Toolkit (MRPT) libraries.
const char * argv[]
mrpt::maps::CSimplePointsMap obstacles_points
World obstacles, as a point cloud.
RRTAlgorithmParams params
Parameters specific to this path solver algorithm.
double goal_distance
Distance from best found path to goal.
Lightweight 2D pose.
Definition: TPose2D.h:22
Transparently opens a compressed "gz" file and reads uncompressed data from it.
double goalBias
Probabily of picking the goal as random target (in [0,1], default=0.05)
const int argc
string myCfgFileName(MRPT_EXAMPLES_BASE_DIRECTORY+string("../share/mrpt/config_files/navigation-ptgs/" "ptrrt_config_example1.ini"))
void renderMoveTree(mrpt::opengl::COpenGLScene &scene, const TPlannerInputTempl< node_pose_t, world_limits_t > &pi, const TPlannerResultTempl< tree_t > &result, const TRenderPlannedPathOptions &options)
#define ASSERT_FILE_EXISTS_(FIL)
Definition: filesystem.h:22
void loadFromSimpleMap(const mrpt::maps::CSimpleMap &Map)
!
Definition: CMetricMap.h:106
TP Space-based RRT path planning for SE(2) (planar) robots.
string mySimpleMap(MRPT_EXAMPLES_BASE_DIRECTORY+string("../share/mrpt/datasets/malaga-cs-fac-building.simplemap.gz"))
A graphical user interface (GUI) for efficiently rendering 3D scenes in real-time.



Page generated by Doxygen 1.8.14 for MRPT 2.0.1 Git: 0fef1a6d7 Fri Apr 3 23:00:21 2020 +0200 at vie abr 3 23:20:28 CEST 2020