MRPT  1.9.9
CParameterizedTrajectoryGenerator.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-2019, 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 
10 #include "nav-precomp.h" // Precomp header
11 
15 #include <mrpt/system/filesystem.h>
16 #include <mrpt/system/os.h>
17 #include <fstream>
18 
19 using namespace mrpt::nav;
20 
21 static std::string OUTPUT_DEBUG_PATH_PREFIX = "./reactivenav.logs";
24 
26 {
28 }
29 
32 {
34 }
35 
38 
40  : m_nav_dyn_state(), m_nav_dyn_state_target_k(INVALID_PTG_PATH_INDEX)
41 
42 {
43 }
44 
45 void CParameterizedTrajectoryGenerator::loadDefaultParams()
46 {
47  m_alphaValuesCount = 121;
48  refDistance = 6.0;
49  m_score_priority = 1.0;
52 }
53 
55 {
56  return false;
57 }
59 {
60  return .0;
61 }
62 
64  const mrpt::config::CConfigFileBase& cfg, const std::string& sSection)
65 {
67  num_paths, uint64_t, m_alphaValuesCount, cfg, sSection);
68  MRPT_LOAD_CONFIG_VAR_NO_DEFAULT(refDistance, double, cfg, sSection);
70  score_priority, double, m_score_priority, cfg, sSection);
72  clearance_num_points, double, m_clearance_num_points, cfg, sSection);
74  clearance_decimated_paths, double, m_clearance_decimated_paths, cfg,
75  sSection);
76 
77  // Ensure a minimum of resolution:
80  static_cast<decltype(m_clearance_num_points)>(refDistance / 1.0));
81 
82  // Optional params, for debugging only
84  vxi, double, m_nav_dyn_state.curVelLocal.vx, cfg, sSection);
86  vyi, double, m_nav_dyn_state.curVelLocal.vy, cfg, sSection);
88  wi, double, m_nav_dyn_state.curVelLocal.omega, cfg, sSection);
89 
91  reltrg_x, double, m_nav_dyn_state.relTarget.x, cfg, sSection);
93  reltrg_y, double, m_nav_dyn_state.relTarget.y, cfg, sSection);
95  reltrg_phi, double, m_nav_dyn_state.relTarget.phi, cfg, sSection);
96 
98  target_rel_speed, double, m_nav_dyn_state.targetRelSpeed, cfg,
99  sSection);
100 }
102  mrpt::config::CConfigFileBase& cfg, const std::string& sSection) const
103 {
104  MRPT_START
105  const int WN = 25, WV = 30;
106 
107  cfg.write(
108  sSection, "num_paths", m_alphaValuesCount, WN, WV,
109  "Number of discrete paths (`resolution`) in the PTG");
110  cfg.write(
111  sSection, "refDistance", refDistance, WN, WV,
112  "Maximum distance (meters) for building trajectories (visibility "
113  "range)");
114  cfg.write(
115  sSection, "score_priority", m_score_priority, WN, WV,
116  "When used in path planning, a multiplying factor (default=1.0) for "
117  "the scores for this PTG. Assign values <1 to PTGs with low priority.");
118  cfg.write(
119  sSection, "clearance_num_points", m_clearance_num_points, WN, WV,
120  "Number of steps for the piecewise-constant approximation of clearance "
121  "(Default=5).");
122  cfg.write(
123  sSection, "clearance_decimated_paths", m_clearance_decimated_paths, WN,
124  WV,
125  "Number of decimated paths for estimation of clearance (Default=15).");
126 
127  // Optional params, for debugging only
128  cfg.write(
129  sSection, "vxi", m_nav_dyn_state.curVelLocal.vx, WN, WV,
130  "(Only for debugging) Current robot velocity vx [m/s].");
131  cfg.write(
132  sSection, "vyi", m_nav_dyn_state.curVelLocal.vy, WN, WV,
133  "(Only for debugging) Current robot velocity vy [m/s].");
134  cfg.write(
135  sSection, "wi", mrpt::RAD2DEG(m_nav_dyn_state.curVelLocal.omega), WN,
136  WV, "(Only for debugging) Current robot velocity omega [deg/s].");
137 
138  cfg.write(
139  sSection, "reltrg_x", m_nav_dyn_state.relTarget.x, WN, WV,
140  "(Only for debugging) Relative target x [m].");
141  cfg.write(
142  sSection, "reltrg_y", m_nav_dyn_state.relTarget.y, WN, WV,
143  "(Only for debugging) Relative target y [m].");
144  cfg.write(
145  sSection, "reltrg_phi", mrpt::RAD2DEG(m_nav_dyn_state.relTarget.phi),
146  WN, WV, "(Only for debugging) Relative target phi [deg].");
147 
148  cfg.write(
149  sSection, "target_rel_speed", m_nav_dyn_state.targetRelSpeed, WN, WV,
150  "(Only for debugging) Desired relative speed at target [0,1]");
151 
152  MRPT_END
153 }
154 
157 {
158  this->deinitialize();
159 
160  uint8_t version;
161  in >> version;
162  switch (version)
163  {
164  case 0:
165  case 1:
166  case 2:
167  case 3:
168  case 4:
170  if (version >= 1) in >> m_clearance_num_points;
171  if (version == 2)
172  {
173  bool old_use_approx_clearance;
174  in >> old_use_approx_clearance; // ignored in v>=3
175  }
176  if (version >= 4)
177  {
179  }
180  else
181  {
183  }
184  break;
185  default:
187  };
188 }
189 
192 {
193  const uint8_t version = 4;
194  out << version;
195 
197  << m_clearance_num_points /* v1 */;
198  out << m_clearance_decimated_paths /* v4*/;
199 }
200 
202  uint16_t k, const unsigned int num_paths)
203 {
204  ASSERT_BELOW_(k, num_paths);
205  return M_PI * (-1.0 + 2.0 * (k + 0.5) / num_paths);
206 }
207 
209 {
210  return index2alpha(k, m_alphaValuesCount);
211 }
212 
214  double alpha, const unsigned int num_paths)
215 {
217  int k = mrpt::round(0.5 * (num_paths * (1.0 + alpha / M_PI) - 1.0));
218  if (k < 0) k = 0;
219  if (k >= static_cast<int>(num_paths)) k = num_paths - 1;
220  return (uint16_t)k;
221 }
222 
224 {
226 }
227 
229  const uint16_t k, mrpt::opengl::CSetOfLines& gl_obj,
230  const double decimate_distance, const double max_path_distance) const
231 {
232  const size_t nPointsInPath = getPathStepCount(k);
233 
234  bool first = true;
235  // Decimate trajectories: we don't need centimeter resolution!
236  double last_added_dist = 0.0;
237  for (size_t n = 0; n < nPointsInPath; n++)
238  {
239  const double d = this->getPathDist(
240  k, n); // distance thru path "k" until timestep "n"
241 
242  // Draw the TP only until we reach the target of the "motion" segment:
243  if (max_path_distance >= 0.0 && d >= max_path_distance) break;
244 
245  if (d < last_added_dist + decimate_distance && n != 0)
246  continue; // skip: decimation
247 
248  last_added_dist = d;
249 
251  this->getPathPose(k, n, p);
252 
253  if (first)
254  {
255  first = false;
256  gl_obj.appendLine(0, 0, 0, p.x, p.y, 0);
257  }
258  else
259  gl_obj.appendLineStrip(p.x, p.y, 0);
260  }
261 }
262 
264  std::vector<double>& TP_Obstacles) const
265 {
266  TP_Obstacles.resize(m_alphaValuesCount);
267  for (size_t k = 0; k < m_alphaValuesCount; k++)
268  initTPObstacleSingle(k, TP_Obstacles[k]);
269 }
271  uint16_t k, double& TP_Obstacle_k) const
272 {
273  TP_Obstacle_k = std::min(
275  ? refDistance
276  : this->getPathDist(k, this->getPathStepCount(k) - 1));
277 }
278 
280  const std::string& ptg_name) const
281 {
282  using namespace mrpt::system;
283  using namespace std;
284 
285  const char* sPath =
287 
289  mrpt::system::createDirectory(mrpt::format("%s/PTGs", sPath));
290 
291  const string sFilTxt_x =
292  mrpt::format("%s/PTGs/PTG%s_x.txt", sPath, ptg_name.c_str());
293  const string sFilTxt_y =
294  mrpt::format("%s/PTGs/PTG%s_y.txt", sPath, ptg_name.c_str());
295  const string sFilTxt_phi =
296  mrpt::format("%s/PTGs/PTG%s_phi.txt", sPath, ptg_name.c_str());
297  const string sFilTxt_t =
298  mrpt::format("%s/PTGs/PTG%s_t.txt", sPath, ptg_name.c_str());
299  const string sFilTxt_d =
300  mrpt::format("%s/PTGs/PTG%s_d.txt", sPath, ptg_name.c_str());
301 
302  ofstream fx(sFilTxt_x.c_str());
303  if (!fx.is_open()) return false;
304  ofstream fy(sFilTxt_y.c_str());
305  if (!fy.is_open()) return false;
306  ofstream fp(sFilTxt_phi.c_str());
307  if (!fp.is_open()) return false;
308  ofstream fd(sFilTxt_d.c_str());
309  if (!fd.is_open()) return false;
310 
311  const size_t nPaths = getAlphaValuesCount();
312 
313  // Text version:
314  fx << "% PTG data file for 'x'. Each row is the trajectory for a different "
315  "'alpha' parameter value."
316  << endl;
317  fy << "% PTG data file for 'y'. Each row is the trajectory for a different "
318  "'alpha' parameter value."
319  << endl;
320  fp << "% PTG data file for 'phi'. Each row is the trajectory for a "
321  "different 'alpha' parameter value."
322  << endl;
323  fd << "% PTG data file for 'd'. Each row is the trajectory for a different "
324  "'alpha' parameter value."
325  << endl;
326 
327  vector<size_t> path_length(nPaths);
328  for (size_t k = 0; k < nPaths; k++) path_length[k] = getPathStepCount(k);
329 
330  size_t maxPoints = 0;
331  for (size_t k = 0; k < nPaths; k++)
332  maxPoints = max(maxPoints, path_length[k]);
333 
334  for (size_t k = 0; k < nPaths; k++)
335  {
336  for (size_t n = 0; n < maxPoints; n++)
337  {
338  const size_t nn = std::min(n, path_length[k] - 1);
340  this->getPathPose(k, nn, p);
341  fx << p.x << " ";
342  fy << p.y << " ";
343  fp << p.phi << " ";
344  fd << this->getPathDist(k, nn) << " ";
345  }
346  fx << endl;
347  fy << endl;
348  fp << endl;
349  fd << endl;
350  }
351 
352  return true;
353 }
354 
356 {
357  return m_is_initialized;
358 }
359 
362  const bool force_update)
363 {
364  // Make sure there is a real difference: notifying a PTG that a condition
365  // changed
366  // may imply a significant computational cost if paths need to be
367  // re-evaluated on the fly, etc.
368  // so the cost of the comparison here is totally worth:
369  if (force_update || m_nav_dyn_state != newState)
370  {
371  ASSERT_(
372  newState.targetRelSpeed >= .0 &&
373  newState.targetRelSpeed <= 1.0); // sanity check
374  m_nav_dyn_state = newState;
375 
376  // 1st) Build PTG paths without counting for target slow-down:
378 
379  this->onNewNavDynamicState();
380 
381  // 2nd) Save the special path for slow-down:
382  if (this->supportSpeedAtTarget())
383  {
384  int target_k = -1;
385  double target_norm_d;
386  // bool is_exact = // JLB removed this constraint for being too
387  // restrictive.
388  this->inverseMap_WS2TP(
390  target_k, target_norm_d, 1.0 /*large tolerance*/);
391  if (target_norm_d > 0.01 && target_norm_d < 0.99 && target_k >= 0 &&
392  target_k < m_alphaValuesCount)
393  {
394  m_nav_dyn_state_target_k = target_k;
395  this->onNewNavDynamicState(); // Recalc
396  }
397  }
398  }
399 }
400 
402  const std::string& cacheFilename, const bool verbose)
403 {
404  if (m_is_initialized) return;
405 
406  const std::string sCache =
407  !cacheFilename.empty()
408  ? cacheFilename
409  : std::string("cache_") +
411  std::string(".bin.gz");
412 
413  this->internal_initialize(sCache, verbose);
414  m_is_initialized = true;
415 }
417 {
418  if (!m_is_initialized) return;
419  this->internal_deinitialize();
420  m_is_initialized = false;
421 }
422 
424  const double ox, const double oy, const double new_tp_obs_dist,
425  double& inout_tp_obs) const
426 {
427  const bool is_obs_inside_robot_shape = isPointInsideRobotShape(ox, oy);
428  if (!is_obs_inside_robot_shape)
429  {
430  mrpt::keep_min(inout_tp_obs, new_tp_obs_dist);
431  return;
432  }
433 
434  // Handle the special case of obstacles *inside* the robot at the begining
435  // of the PTG path:
436  switch (COLLISION_BEHAVIOR())
437  {
438  case COLL_BEH_STOP:
439  inout_tp_obs = .0;
440  break;
441 
442  case COLL_BEH_BACK_AWAY:
443  {
444  if (new_tp_obs_dist < getMaxRobotRadius())
445  {
446  // This means that we are getting apart of the obstacle:
447  // ignore it to allow the robot to get off the near-collision:
448  // Don't change inout_tp_obs.
449  return;
450  }
451  else
452  {
453  // This means we are already in collision and trying to get even
454  // closer
455  // to the obstacle: totally disprove this action:
456  inout_tp_obs = .0;
457  }
458  }
459  break;
460 
461  default:
462  THROW_EXCEPTION("Obstacle postprocessing enum not implemented!");
463  }
464 }
465 
467  ClearanceDiagram& cd) const
468 {
470  for (unsigned int decim_k = 0; decim_k < m_clearance_decimated_paths;
471  decim_k++)
472  {
473  const auto real_k = cd.decimated_k_to_real_k(decim_k);
474  const size_t numPathSteps = getPathStepCount(real_k);
475  const double numStepsPerIncr =
476  (numPathSteps - 1.0) / double(m_clearance_num_points);
477 
478  auto& cl_path = cd.get_path_clearance_decimated(decim_k);
479  for (double step_pointer_dbl = 0.0; step_pointer_dbl < numPathSteps;
480  step_pointer_dbl += numStepsPerIncr)
481  {
482  const size_t step = mrpt::round(step_pointer_dbl);
483  const double dist_over_path = this->getPathDist(real_k, step);
484  cl_path[dist_over_path] = 1.0; // create entry in map<>
485  }
486  }
487 }
488 
490  const double ox, const double oy, ClearanceDiagram& cd) const
491 {
492  // Initialize CD on first call:
495 
496  // evaluate in derived-class: this function also keeps the minimum
497  // automatically.
498  for (uint16_t decim_k = 0; decim_k < cd.get_decimated_num_paths();
499  decim_k++)
500  {
501  const auto real_k = cd.decimated_k_to_real_k(decim_k);
503  ox, oy, real_k, cd.get_path_clearance_decimated(decim_k));
504  }
505 }
506 
508  ClearanceDiagram& cd, const std::vector<double>& TP_obstacles) const
509 {
510  // Used only when in approx mode (Removed 30/01/2017)
511 }
512 
514  const double ox, const double oy, const uint16_t k,
515  ClearanceDiagram::dist2clearance_t& inout_realdist2clearance,
516  bool treat_as_obstacle) const
517 {
518  bool had_collision = false;
519 
520  const size_t numPathSteps = getPathStepCount(k);
521  ASSERT_(numPathSteps > inout_realdist2clearance.size());
522 
523  const double numStepsPerIncr =
524  (numPathSteps - 1.0) / (inout_realdist2clearance.size());
525 
526  double step_pointer_dbl = 0.0;
527  const mrpt::math::TPoint2D og(ox, oy); // obstacle in "global" frame
528  mrpt::math::TPoint2D ol; // obstacle in robot frame
529 
530  for (auto& e : inout_realdist2clearance)
531  {
532  step_pointer_dbl += numStepsPerIncr;
533  const size_t step = mrpt::round(step_pointer_dbl);
534  const double dist_over_path = e.first;
535  double& inout_clearance = e.second;
536 
537  if (had_collision)
538  {
539  // We found a collision in a previous step along this "k" path, so
540  // it does not make sense to evaluate the clearance of a pose which
541  // is not reachable:
542  inout_clearance = .0;
543  continue;
544  }
545 
546  mrpt::math::TPose2D pose;
547  this->getPathPose(k, step, pose);
548 
549  // obstacle to robot clearance:
550  ol = pose.inverseComposePoint(og);
551  const double this_clearance =
552  treat_as_obstacle ? this->evalClearanceToRobotShape(ol.x, ol.y)
553  : ol.norm();
554  if (this_clearance <= .0 && treat_as_obstacle &&
555  (dist_over_path > 0.5 ||
556  std::abs(mrpt::math::angDistance(
557  std::atan2(oy, ox), index2alpha(k))) < mrpt::DEG2RAD(45.0)))
558  {
559  // Collision:
560  had_collision = true;
561  inout_clearance = .0;
562  }
563  else
564  {
565  // The obstacle is not a direct collision.
566  const double this_clearance_norm =
567  this_clearance / this->refDistance;
568 
569  // Update minimum in output structure
570  mrpt::keep_min(inout_clearance, this_clearance_norm);
571  }
572  }
573 }
574 
576  : curVelLocal(0, 0, 0), relTarget(20.0, 0, 0)
577 
578 {
579 }
580 
582  const TNavDynamicState& o) const
583 {
584  return (curVelLocal == o.curVelLocal) && (relTarget == o.relTarget) &&
585  (targetRelSpeed == o.targetRelSpeed);
586 }
587 
590 {
591  const uint8_t version = 0;
592  out << version;
593  // Data:
594  out << curVelLocal << relTarget << targetRelSpeed;
595 }
596 
599 {
600  uint8_t version;
601  in >> version;
602  switch (version)
603  {
604  case 0:
605  in >> curVelLocal >> relTarget >> targetRelSpeed;
606  break;
607  default:
609  };
610 }
double index2alpha(uint16_t k) const
Alpha value for the discrete corresponding value.
virtual bool supportSpeedAtTarget() const
Returns true if this PTG takes into account the desired velocity at target.
#define MRPT_LOAD_HERE_CONFIG_VAR_DEGREES( variableName, variableType, targetVariable, configFileObject, sectionNameStr)
void initialize(const std::string &cacheFilename=std::string(), const bool verbose=true)
Must be called after setting all PTG parameters and before requesting converting obstacles to TP-Spac...
double x
X,Y coordinates.
Definition: TPoint2D.h:23
virtual bool supportVelCmdNOP() const
Returns true if it is possible to stop sending velocity commands to the robot and, still, the robot controller will be able to keep following the last sent trajectory ("NOP" velocity commands).
GLclampf GLclampf GLclampf alpha
Definition: glext.h:3529
std::map< double, double > dist2clearance_t
[TPS_distance] => normalized_clearance_for_exactly_that_robot_pose
virtual void internal_writeToStream(mrpt::serialization::CArchive &out) const
size_t get_decimated_num_paths() const
static PTG_collision_behavior_t & COLLISION_BEHAVIOR()
Defines the behavior when there is an obstacle inside the robot shape right at the beginning of a PTG...
bool createDirectory(const std::string &dirName)
Creates a directory.
Definition: filesystem.cpp:161
#define MRPT_START
Definition: exceptions.h:241
virtual void internal_initialize(const std::string &cacheFilename=std::string(), const bool verbose=true)=0
Must be called after setting all PTG parameters and before requesting converting obstacles to TP-Spac...
#define min(a, b)
unsigned __int16 uint16_t
Definition: rptypes.h:47
IMPLEMENTS_VIRTUAL_SERIALIZABLE(CParameterizedTrajectoryGenerator, CSerializable, mrpt::nav) CParameterizedTrajectoryGenerator
double RAD2DEG(const double x)
Radians to degrees.
void saveToConfigFile(mrpt::config::CConfigFileBase &cfg, const std::string &sSection) const override
This method saves the options to a ".ini"-like file or memory-stored string list. ...
void appendLineStrip(float x, float y, float z)
Appends a line whose starting point is the end point of the last line (similar to OpenGL&#39;s GL_LINE_ST...
Definition: CSetOfLines.h:88
double x
X,Y coordinates.
Definition: TPose2D.h:30
#define THROW_EXCEPTION(msg)
Definition: exceptions.h:67
dist2clearance_t & get_path_clearance_decimated(size_t decim_k)
virtual void renderPathAsSimpleLine(const uint16_t k, mrpt::opengl::CSetOfLines &gl_obj, const double decimate_distance=0.1, const double max_path_distance=-1.0) const
Returns the representation of one trajectory of this PTG as a 3D OpenGL object (a simple curved line)...
#define ASSERT_BELOW_(__A, __B)
Definition: exceptions.h:149
virtual bool isPointInsideRobotShape(const double x, const double y) const =0
Returns true if the point lies within the robot shape.
GLint * first
Definition: glext.h:3833
double DEG2RAD(const double x)
Degrees to radians.
GLenum GLsizei n
Definition: glext.h:5136
void initTPObstacles(std::vector< double > &TP_Obstacles) const
Resizes and populates the initial appropriate contents in a vector of tp-obstacles (collision-free ra...
Favor getting back from too-close (almost collision) obstacles.
T angDistance(T from, T to)
Computes the shortest angular increment (or distance) between two planar orientations, such that it is constrained to [-pi,pi] and is correct for any combination of angles (e.g.
Definition: wrap2pi.h:95
virtual double maxTimeInVelCmdNOP(int path_k) const
Only for PTGs supporting supportVelCmdNOP(): this is the maximum time (in seconds) for which the path...
void updateClearancePost(ClearanceDiagram &cd, const std::vector< double > &TP_obstacles) const
void updateNavDynamicState(const TNavDynamicState &newState, const bool force_update=false)
To be invoked by the navigator before each navigation step, to let the PTG to react to changing dynam...
uint16_t m_nav_dyn_state_target_k
Update in updateNavDynamicState(), contains the path index (k) for the target.
Clearance information for one particular PTG and one set of obstacles.
STL namespace.
std::string fileNameStripInvalidChars(const std::string &filename, const char replacement_to_invalid_chars='_')
Replace invalid filename chars by underscores (&#39;_&#39;) or any other user-given char. ...
Definition: filesystem.cpp:329
virtual size_t getPathStepCount(uint16_t k) const =0
Access path k ([0,N-1]=>[-pi,pi] in alpha): number of discrete "steps" along the trajectory.
void keep_min(T &var, const K test_val)
If the second argument is below the first one, set the first argument to this lower value...
virtual double getPathDist(uint16_t k, uint32_t step) const =0
Access path k ([0,N-1]=>[-pi,pi] in alpha): traversed distance at discrete step step.
virtual void getPathPose(uint16_t k, uint32_t step, mrpt::math::TPose2D &p) const =0
Access path k ([0,N-1]=>[-pi,pi] in alpha): pose of the vehicle at discrete step step.
bool debugDumpInFiles(const std::string &ptg_name) const
Dump PTG trajectories in four text files: `.
void internal_TPObsDistancePostprocess(const double ox, const double oy, const double new_tp_obs_dist, double &inout_tp_obs) const
To be called by implementors of updateTPObstacle() and updateTPObstacleSingle() to honor the user set...
void initTPObstacleSingle(uint16_t k, double &TP_Obstacle_k) const
unsigned char uint8_t
Definition: rptypes.h:44
#define MRPT_THROW_UNKNOWN_SERIALIZATION_VERSION(__V)
For use in CSerializable implementations.
Definition: exceptions.h:97
#define ASSERT_(f)
Defines an assertion mechanism.
Definition: exceptions.h:120
This is the base class for any user-defined PTG.
This class allows loading and storing values and vectors of different types from a configuration text...
size_t decimated_k_to_real_k(size_t k) const
void appendLine(const mrpt::math::TSegment3D &sgm)
Appends a line to the set.
Definition: CSetOfLines.h:68
void keep_max(T &var, const K test_val)
If the second argument is above the first one, set the first argument to this higher value...
size_t get_actual_num_paths() const
double vx
Velocity components: X,Y (m/s)
Definition: TTwist2D.h:26
mrpt::math::TPoint2D inverseComposePoint(const TPoint2D g) const
bool isInitialized() const
Returns true if initialize() has been called and there was no errors, so the PTG is ready to be queri...
mrpt::math::TTwist2D curVelLocal
Current vehicle velocity (local frame of reference)
virtual void onNewNavDynamicState()=0
Invoked when m_nav_dyn_state has changed; gives the PTG the opportunity to react and parameterize pat...
static std::string OUTPUT_DEBUG_PATH_PREFIX
PTG_collision_behavior_t
Defines behaviors for where there is an obstacle inside the robot shape right at the beginning of a P...
void initClearanceDiagram(ClearanceDiagram &cd) const
Must be called to resize a CD to its correct size, before calling updateClearance() ...
mrpt::math::TPose2D relTarget
Current relative target location.
#define MRPT_LOAD_CONFIG_VAR_NO_DEFAULT( variableName, variableType, configFileObject, sectionNameStr)
void resize(size_t actual_num_paths, size_t decimated_num_paths)
Initializes the container to allocate decimated_num_paths entries, as a decimated subset of a total o...
GLsizei const GLchar ** string
Definition: glext.h:4116
T wrapToPi(T a)
Modifies the given angle to translate it into the ]-pi,pi] range.
Definition: wrap2pi.h:50
void write(const std::string &section, const std::string &name, enum_t value, const int name_padding_width=-1, const int value_padding_width=-1, const std::string &comment=std::string())
uint16_t m_clearance_num_points
Number of steps for the piecewise-constant approximation of clearance from TPS distances [0...
uint16_t getAlphaValuesCount() const
Get the number of different, discrete paths in this family.
double norm() const
Point norm: |v| = sqrt(x^2+y^2)
Definition: TPoint2D.h:162
Totally dissallow any movement if there is any too-close (almost collision) obstacles.
void updateClearance(const double ox, const double oy, ClearanceDiagram &cd) const
Updates the clearance diagram given one (ox,oy) obstacle point, in coordinates relative to the PTG pa...
unsigned __int64 uint64_t
Definition: rptypes.h:53
void deinitialize()
This must be called to de-initialize the PTG if some parameter is to be changed.
Virtual base class for "archives": classes abstracting I/O streams.
Definition: CArchive.h:53
void loadFromConfigFile(const mrpt::config::CConfigFileBase &cfg, const std::string &sSection) override
Parameters accepted by this base class:
uint16_t m_clearance_decimated_paths
Number of paths for the decimated paths analysis of clearance.
std::string format(const char *fmt,...) MRPT_printf_format_check(1
A std::string version of C sprintf.
Definition: format.cpp:16
virtual void evalClearanceSingleObstacle(const double ox, const double oy, const uint16_t k, ClearanceDiagram::dist2clearance_t &inout_realdist2clearance, bool treat_as_obstacle=true) const
Evals the robot clearance for each robot pose along path k, for the real distances in the key of the ...
#define MRPT_END
Definition: exceptions.h:245
virtual void internal_readFromStream(mrpt::serialization::CArchive &in)
GLuint in
Definition: glext.h:7391
Lightweight 2D pose.
Definition: TPose2D.h:22
static std::string & OUTPUT_DEBUG_PATH_PREFIX()
The path used as defaul output in, for example, debugDumpInFiles.
#define MRPT_LOAD_HERE_CONFIG_VAR( variableName, variableType, targetVariable, configFileObject, sectionNameStr)
virtual double evalClearanceToRobotShape(const double ox, const double oy) const =0
Evals the clearance from an obstacle (ox,oy) in coordinates relative to the robot center...
A set of independent lines (or segments), one line with its own start and end positions (X...
Definition: CSetOfLines.h:31
#define MRPT_LOAD_HERE_CONFIG_VAR_NO_DEFAULT( variableName, variableType, targetVariable, configFileObject, sectionNameStr)
Lightweight 2D point.
Definition: TPoint2D.h:31
TNavDynamicState m_nav_dyn_state
Updated before each nav step by.
static PTG_collision_behavior_t COLLISION_BEHAVIOR
Dynamic state that may affect the PTG path parameterization.
GLfloat GLfloat p
Definition: glext.h:6398
virtual void internal_deinitialize()=0
This must be called to de-initialize the PTG if some parameter is to be changed.
double phi
Orientation (rads)
Definition: TPose2D.h:32
uint16_t m_alphaValuesCount
The number of discrete values for "alpha" between -PI and +PI.
virtual double getMaxRobotRadius() const =0
Returns an approximation of the robot radius.
double omega
Angular velocity (rad/s)
Definition: TTwist2D.h:28
virtual bool inverseMap_WS2TP(double x, double y, int &out_k, double &out_normalized_d, double tolerance_dist=0.10) const =0
Computes the closest (alpha,d) TP coordinates of the trajectory point closest to the Workspace (WS) C...
uint16_t alpha2index(double alpha) const
Discrete index value for the corresponding alpha value.
virtual std::string getDescription() const =0
Gets a short textual description of the PTG and its parameters.
int round(const T value)
Returns the closer integer (int) to x.
Definition: round.h:23



Page generated by Doxygen 1.8.14 for MRPT 1.9.9 Git: 8fe78517f Sun Jul 14 19:43:28 2019 +0200 at lun oct 28 02:10:00 CET 2019