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

Method GetAtlasKeyframes

src/Atlas.cc:397–411  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

395}
396
397map<long unsigned int, KeyFrame*> Atlas::GetAtlasKeyframes()
398{
399 map<long unsigned int, KeyFrame*> mpIdKFs;
400 for(Map* pMap_i : mvpBackupMaps)
401 {
402 vector<KeyFrame*> vpKFs_Mi = pMap_i->GetAllKeyFrames();
403
404 for(KeyFrame* pKF_j_Mi : vpKFs_Mi)
405 {
406 mpIdKFs[pKF_j_Mi->mnId] = pKF_j_Mi;
407 }
408 }
409
410 return mpIdKFs;
411}
412
413} //namespace ORB_SLAM3

Callers

nothing calls this directly

Calls 1

GetAllKeyFramesMethod · 0.45

Tested by

no test coverage detected