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
Copy file name to clipboardExpand all lines: corelib/include/rtabmap/core/Parameters.h
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -362,8 +362,8 @@ class RTABMAP_CORE_EXPORT Parameters
362
362
363
363
// RGB-D SLAM
364
364
RTABMAP_PARAM(RGBD, Enabled, bool, true, "Activate metric SLAM. If set to false, classic RTAB-Map loop closure detection is done using only images and without any metric information.");
365
-
RTABMAP_PARAM(RGBD, LinearUpdate, float, 0.1, "Minimum linear displacement (m) to update the map. Rehearsal is done prior to this, so weights are still updated.");
366
-
RTABMAP_PARAM(RGBD, AngularUpdate, float, 0.1, "Minimum angular displacement (rad) to update the map. Rehearsal is done prior to this, so weights are still updated.");
365
+
RTABMAP_PARAM(RGBD, LinearUpdate, float, 0.1, uFormat("Minimum linear displacement (m) to update the map. Rehearsal is done prior to this, so weights are still updated. To update the map when not moving, both %s and %s should be set to 0.", Parameters::kRGBDLinearUpdate().c_str(), Parameters::kRGBDAngularUpdate().c_str()));
366
+
RTABMAP_PARAM(RGBD, AngularUpdate, float, 0.1, uFormat("Minimum angular displacement (rad) to update the map. Rehearsal is done prior to this, so weights are still updated. To update the map when not moving, both %s and %s should be set to 0.", Parameters::kRGBDLinearUpdate().c_str(), Parameters::kRGBDAngularUpdate().c_str()));
367
367
RTABMAP_PARAM(RGBD, LinearSpeedUpdate, float, 0.0, "Maximum linear speed (m/s) to update the map (0 means not limit).");
368
368
RTABMAP_PARAM(RGBD, AngularSpeedUpdate, float, 0.0, "Maximum angular speed (rad/s) to update the map (0 means not limit).");
369
369
RTABMAP_PARAM(RGBD, AggressiveLoopThr, float, 0.05, uFormat("Loop closure threshold used (overriding %s) when a new mapping session is not yet linked to a map of the highest loop closure hypothesis. In localization mode, this threshold is used when there are no loop closure constraints with any map in the cache (%s). In all cases, the goal is to aggressively loop on a previous map in the database. Only used when %s is enabled. Set 1 to disable.", kRtabmapLoopThr().c_str(), kRGBDMaxOdomCacheSize().c_str(), kRGBDEnabled().c_str()));
@@ -13141,7 +13141,7 @@ If set to false, classic RTAB-Map loop closure detection is done using only imag
13141
13141
<item row="0" column="1">
13142
13142
<widget class="QLabel" name="label_153">
13143
13143
<property name="text">
13144
-
<string>Linear update: Minimum linear displacement to update the map. Note that Weight Update is done prior to this, so weights are still updated.</string>
13144
+
<string>Linear update: Minimum linear displacement to update the map. Note that Weight Update is done prior to this, so weights are still updated. To update the map when not moving, both linear and angular update parameters should be 0.</string>
13145
13145
</property>
13146
13146
<property name="wordWrap">
13147
13147
<bool>true</bool>
@@ -13231,7 +13231,7 @@ If set to false, classic RTAB-Map loop closure detection is done using only imag
13231
13231
<item row="1" column="1">
13232
13232
<widget class="QLabel" name="label_152">
13233
13233
<property name="text">
13234
-
<string>Angular update: Minimum angular displacement to update the map. Note that Weight Update is done prior to this, so weights are still updated.</string>
13234
+
<string>Angular update: Minimum angular displacement to update the map. Note that Weight Update is done prior to this, so weights are still updated. To update the map when not moving, both linear and angular update parameters should be 0.</string>
13235
13235
</property>
13236
13236
<property name="wordWrap">
13237
13237
<bool>true</bool>
@@ -13303,7 +13303,7 @@ If set to false, classic RTAB-Map loop closure detection is done using only imag
13303
13303
<item row="2" column="1">
13304
13304
<widget class="QLabel" name="label_432">
13305
13305
<property name="text">
13306
-
<string>Maximum linear speed to update the map (0 means not limit).</string>
13306
+
<string>Maximum linear speed to update the map (0 means not limit).</string>
0 commit comments