| 111 | } |
| 112 | |
| 113 | unsigned int map_database::get_num_keyframes() const |
| 114 | { |
| 115 | std::lock_guard<std::mutex> lock(mtx_map_access_); |
| 116 | return keyframes_.size(); |
| 117 | } |
| 118 | |
| 119 | std::vector<landmark *> map_database::get_all_landmarks() const |
| 120 | { |
no test coverage detected