MCPcopy Create free account
hub / github.com/Robotics-STAR-Lab/H2-Mapping / computeWindowBRIEFPoint

Method computeWindowBRIEFPoint

src/dvins/pose_graph/src/keyframe.cpp:75–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

73
74
75void KeyFrame::computeWindowBRIEFPoint()
76{
77 BriefExtractor extractor(BRIEF_PATTERN_FILE.c_str());
78 for(int i = 0; i < (int)point_2d_uv.size(); i++)
79 {
80 cv::KeyPoint key;
81 key.pt = point_2d_uv[i];
82 window_keypoints.push_back(key);
83 }
84 extractor(image, window_keypoints, window_brief_descriptors);
85}
86
87void KeyFrame::computeBRIEFPoint()
88{

Callers

nothing calls this directly

Calls 2

push_backMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected