Please enable JavaScript.
Coggle requires JavaScript to display documents.
ORB_SLAM2 (NOTES (Frame (mInitialFrame, mLastFrame, mCurrentFrame),…
ORB_SLAM2
NOTES
-
The follow code is executed on video track lose
Tracking.cc in method Tracking::Relocalization()
1344| mCurrentFrame.ComputeBoW()
-
The initialization blocks on there:
Tracking.cc inTracking::MonocularInitialization
569| if(mCurrentFrame.mvKeys.size()>100)
The CODE
ORB_SLAM2::
Tracking
double uc, vc, fu, fv,
cws_determinant, cws[4][3], ccs[4][3]
double *pws, *us, *alphas, *pcs
-
-
-
-
-
-
-
-
-
-
System
-
-
Slam system basis of everything, it contains all other objects
-
-
int ORBmatcher::SearchByBow
(*pKF, &F, &vpMapPointMatches)
-
-