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

Method MapPoint

src/MapPoint.cc:30–37  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

28mutex MapPoint::mGlobalMutex;
29
30MapPoint::MapPoint():
31 mnFirstKFid(0), mnFirstFrame(0), nObs(0), mnTrackReferenceForFrame(0),
32 mnLastFrameSeen(0), mnBALocalForKF(0), mnFuseCandidateForKF(0), mnLoopPointForKF(0), mnCorrectedByKF(0),
33 mnCorrectedReference(0), mnBAGlobalForKF(0), mnVisible(1), mnFound(1), mbBad(false),
34 mpReplaced(static_cast<MapPoint*>(NULL))
35{
36 mpReplaced = static_cast<MapPoint*>(NULL);
37}
38
39MapPoint::MapPoint(const Eigen::Vector3f &Pos, KeyFrame *pRefKF, Map* pMap):
40 mnFirstKFid(pRefKF->mnId), mnFirstFrame(pRefKF->mnFrameId), nObs(0), mnTrackReferenceForFrame(0),

Callers

nothing calls this directly

Calls 5

GetRwcMethod · 0.80
GetOwMethod · 0.80
GetIdMethod · 0.45
GetCameraCenterMethod · 0.45
GetRelativePoseTlrMethod · 0.45

Tested by

no test coverage detected