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

Method get_frames

example/util/kitti_util.cc:74–85  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72}
73
74std::vector<kitti_sequence::frame> kitti_sequence::get_frames() const
75{
76 std::vector<frame> frames;
77 assert(timestamps_.size() == left_img_file_paths_.size());
78 assert(timestamps_.size() == right_img_file_paths_.size());
79 assert(left_img_file_paths_.size() == right_img_file_paths_.size());
80 for (unsigned int i = 0; i < timestamps_.size(); ++i)
81 {
82 frames.emplace_back(frame{left_img_file_paths_.at(i), right_img_file_paths_.at(i), timestamps_.at(i)});
83 }
84 return frames;
85}

Callers 15

mono_trackingFunction · 0.45
stereo_trackingFunction · 0.45
mono_trackingFunction · 0.45
mono_trackingFunction · 0.45
stereo_trackingFunction · 0.45
mono_localizationFunction · 0.45
rgbd_localizationFunction · 0.45
mono_trackingFunction · 0.45
rgbd_trackingFunction · 0.45
mono_trackingFunction · 0.45
rgbd_trackingFunction · 0.45
mono_trackingFunction · 0.45

Calls 1

sizeMethod · 0.45

Tested by

no test coverage detected