Is there a way to save a map without saving its images in the .db file? #1305
-
If I understand correctly, rtabmap uses image features for loop closure. However, the original image doesn't need to be kept if the features are stored. In order to preserve the privacy of people around at the time of "recording" the map, is it possible to not save the images and only the features while mapping? Is there otherwise an easy way to delete them afterwards from the db file while still keeping it usable? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Set parameter There is indeed no usage of the RGB and depth images (or stereo images) in production unless we want to export high resolution point cloud afterwards. For development, it is useful to keep them for visualization/debugging/reprocessing database with different parameters (e.g., trying other visual features or different parameters to generate the occupancy grid). |
Beta Was this translation helpful? Give feedback.
Set parameter
Mem/BinDataKept
to false, then image data won't be saved in the database.There is indeed no usage of the RGB and depth images (or stereo images) in production unless we want to export high resolution point cloud afterwards. For development, it is useful to keep them for visualization/debugging/reprocessing database with different parameters (e.g., trying other visual features or different parameters to generate the occupancy grid).