Hesai QT128 with Zed2i and external fused Odometry

classic Classic list List threaded Threaded
101 messages Options
1 ... 3456
Reply | Threaded
Open this post in threaded view
|

Re: Hesai QT128 with Zed2i and external fused Odometry

aninath93
This post was updated on .
This is causing the issue, updated pose is not found in node after tag detection and maps get cleared,

https://github.com/introlab/rtabmap/blob/master/corelib/src/GlobalMap.cpp#L131

I thought the tags were not added as nodes, just kept as links which get destroyed once seen and optimized. If i comment this out, it works and the map does not revert back, does a new condition needs to be added for this
if graphChanged && tag_detections ?

        if(graphOptimized || graphChanged)
        {
                // clear all but keep cache
                //clear();
        }
1 ... 3456