Updating map #1093
-
Is there an API to re-map parts of a map? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Currently, to "append" a new session, we can set parameter One manual way to remove nodes in the map is with Other approaches rely on editing the sqlite3 database directly, though one should carefully remove links in Link table, nodes in Node/Data tables and corresponding features in Feature table. |
Beta Was this translation helpful? Give feedback.
Currently, to "append" a new session, we can set parameter
Rtabmap/StartNewMapOnLoopClosure
to true so that a new session will start only when the robot/camera is first localized in the previous map. That way, we make sure that the new session is merged with previous one(s). Note if you remap the same environment, the old nodes of same location will still be in the map. If you want to remove those old nodes, there is no automatic tool to do this.One manual way to remove nodes in the map is with
rtabmap-databaseViewer
, with Constraints view and Graph View. In Graph view, search for the node or group of nodes you want to remove. The idea is that with Constraint view, you search the links t…