File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -585,6 +585,7 @@ class TracksManager:
585585 def num_shots (self ) -> int : ...
586586 def num_tracks (self ) -> int : ...
587587 def remove_observation (self , arg0 : str , arg1 : str ) -> None : ...
588+ def remove_track (self , arg0 : str ) -> None : ...
588589 def write_to_file (self , arg0 : str ) -> None : ...
589590
590591Angular : "ErrorType"
Original file line number Diff line number Diff line change @@ -292,6 +292,7 @@ PYBIND11_MODULE(pymap, m) {
292292 &map::TracksManager::MergeTracksManager)
293293 .def (" add_observation" , &map::TracksManager::AddObservation)
294294 .def (" remove_observation" , &map::TracksManager::RemoveObservation)
295+ .def (" remove_track" , &map::TracksManager::RemoveTrack)
295296 .def (" num_shots" , &map::TracksManager::NumShots)
296297 .def (" num_tracks" , &map::TracksManager::NumTracks)
297298 .def (" get_shot_ids" , &map::TracksManager::GetShotIds)
You can’t perform that action at this time.
0 commit comments