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
Hi,thanks for nice work!
I have test my own data and get good result.But for large-scale data or long-term data,I found that this process use too much memory,so could you please give some suggestions?
The text was updated successfully, but these errors were encountered:
Hello, excessive memory consumption is caused by the large size of the VoxelMap. The structure of the VoxelMap is actually an std::unordered_map. You can try keeping track of the occupancy status of each map cell and remove those cells that have been unoccupied for a long time(or too far away), thus maintaining a smaller local map. We are also planning to add this feature.
Hi,thanks for nice work!
I have test my own data and get good result.But for large-scale data or long-term data,I found that this process use too much memory,so could you please give some suggestions?
The text was updated successfully, but these errors were encountered: