MCPcopy Create free account
hub / github.com/UZ-SLAMLab/ORB_SLAM3 / Map

Method Map

src/Map.cc:29–34  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

27long unsigned int Map::nNextId=0;
28
29Map::Map():mnMaxKFid(0),mnBigChangeIdx(0), mbImuInitialized(false), mnMapChange(0), mpFirstRegionKF(static_cast<KeyFrame*>(NULL)),
30mbFail(false), mIsInUse(false), mHasTumbnail(false), mbBad(false), mnMapChangeNotified(0), mbIsInertial(false), mbIMU_BA1(false), mbIMU_BA2(false)
31{
32 mnId=nNextId++;
33 mThumbnail = static_cast<GLubyte*>(NULL);
34}
35
36Map::Map(int initKFid):mnInitKFid(initKFid), mnMaxKFid(initKFid),/*mnLastLoopKFid(initKFid),*/ mnBigChangeIdx(0), mIsInUse(false),
37 mHasTumbnail(false), mbBad(false), mbImuInitialized(false), mpFirstRegionKF(static_cast<KeyFrame*>(NULL)),

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected