You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
build_PTG_collision_grids(): simplified and more accurate
Leave only one build_PTG_collision_grids() function.
Slighly slower but more accurate and conservative (safer) computation of
collision grids for PTGs.
Copy file name to clipboardExpand all lines: doc/doxygen-pages/changeLog_doc.h
+1Lines changed: 1 addition & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,7 @@
54
54
- mrpt::reactivenav::CParameterizedTrajectoryGenerator: New methods:
55
55
- mrpt::reactivenav::CParameterizedTrajectoryGenerator::inverseMap_WS2TP() for inverse look-up of WS to TP space - [(commit)](https://github.com/jlblancoc/mrpt/commit/4d04ef50e3dea581bed6287d4ea6593034c47da3)
Copy file name to clipboardExpand all lines: libs/reactivenav/include/mrpt/reactivenav/motion_planning_utils.h
+6-16Lines changed: 6 additions & 16 deletions
Original file line number
Diff line number
Diff line change
@@ -20,29 +20,19 @@ namespace mrpt
20
20
/** @name Motion planning utilities
21
21
@{*/
22
22
23
-
/** Builds the collision grid for a given list of PTGs.
23
+
/** Builds the collision grid for a given PTGs, or load it from a cache file.
24
24
* The collision grid must be calculated before calling CParameterizedTrajectoryGenerator::CColisionGrid::getTPObstacle
25
25
* \param PTGs The list of PTGs to calculate their grids.
26
26
* \param robotShape The shape of the robot.
27
-
* \param cacheFilesPrefix The prefix of the files where the collision grids will be dumped to speed-up future recalculations.
28
-
* \param verbose
27
+
* \param cacheFilename The filename where the collision grids will be dumped to speed-up future recalculations. If it exists upon call, the collision grid will be loaded from here if all PTG parameters match. Example: "PTG_%03d.dat.gz".
0 commit comments