| 43 | cv::BFMatcher Frame::BFmatcher = cv::BFMatcher(cv::NORM_HAMMING); |
| 44 | |
| 45 | Frame::Frame(): mpcpi(NULL), mpImuPreintegrated(NULL), mpPrevFrame(NULL), mpImuPreintegratedFrame(NULL), mpReferenceKF(static_cast<KeyFrame*>(NULL)), mbIsSet(false), mbImuPreintegrated(false), mbHasPose(false), mbHasVelocity(false) |
| 46 | { |
| 47 | #ifdef REGISTER_TIMES |
| 48 | mTimeStereoMatch = 0; |
| 49 | mTimeORB_Ext = 0; |
| 50 | #endif |
| 51 | } |
| 52 | |
| 53 | |
| 54 | //Copy Constructor |
nothing calls this directly
no test coverage detected