MCPcopy Create free account
hub / github.com/PeterFWS/Structure-PLP-SLAM / LineFeatureTracker

Method LineFeatureTracker

src/PLPSLAM/feature/line_extractor.cc:30–38  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected