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
rtabmap.cpp
line 1754
the following code supposed to be activated in the mapping only but actually running also in localization mode and causing to memory leak:
I assume needs to add _memory->isIncremental() to this condition:
if(signature->getLinks().size() &&
signature->getLinks().begin()->second.type() == Link::kNeighbor && _memory->isIncremental())
thanks
The text was updated successfully, but these errors were encountered:
rtabmap.cpp
line 1754
the following code supposed to be activated in the mapping only but actually running also in localization mode and causing to memory leak:
_constraints.insert(std::make_pair(tmp.from(), tmp));
I assume needs to add _memory->isIncremental() to this condition:
if(signature->getLinks().size() &&
signature->getLinks().begin()->second.type() == Link::kNeighbor && _memory->isIncremental())
thanks
The text was updated successfully, but these errors were encountered: