| 28 | namespace feature |
| 29 | { |
| 30 | LineFeatureTracker::LineFeatureTracker(camera::base *camera) |
| 31 | : _camera(camera), _frame_cnt(0) |
| 32 | { |
| 33 | // this idea from PL-VINS, we only use the line extracted from original image resolution |
| 34 | _num_levels = 1; |
| 35 | _scale_factor = 2; |
| 36 | |
| 37 | initialize(); |
| 38 | } |
| 39 | |
| 40 | void LineFeatureTracker::readIntrinsicParameter(const cv::Mat &img) |
| 41 | { |
nothing calls this directly
no outgoing calls
no test coverage detected