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 over time:
can you explain what is the purpose of _constraints ?
we tried to fix it to
if(signature->getLinks().size() &&
signature->getLinks().begin()->second.type() == Link::kNeighbor && _memory->isIncremental())
but got some errors that some nodes not found in the graph..
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 over time:
_constraints.insert(std::make_pair(tmp.from(), tmp));
can you explain what is the purpose of _constraints ?
we tried to fix it to
if(signature->getLinks().size() &&
signature->getLinks().begin()->second.type() == Link::kNeighbor && _memory->isIncremental())
but got some errors that some nodes not found in the graph..
thanks
The text was updated successfully, but these errors were encountered: