Skip to content

Commit

Permalink
Update System.h
Browse files Browse the repository at this point in the history
Make clearer that SaveTrajectoryKITTI and SaveTrajectoryTUM do not work for monocular.
  • Loading branch information
raulmur authored Oct 27, 2016
1 parent 1a3bc4b commit 1656554
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion include/System.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,17 +91,19 @@ class System
void Shutdown();

// Save camera trajectory in the TUM RGB-D dataset format.
// Only for stereo and RGB-D. This method does not work for monocular.
// Call first Shutdown()
// See format details at: http://vision.in.tum.de/data/datasets/rgbd-dataset
void SaveTrajectoryTUM(const string &filename);

// Save keyframe poses in the TUM RGB-D dataset format.
// Use this function in the monocular case.
// This method works for all sensor input.
// Call first Shutdown()
// See format details at: http://vision.in.tum.de/data/datasets/rgbd-dataset
void SaveKeyFrameTrajectoryTUM(const string &filename);

// Save camera trajectory in the KITTI dataset format.
// Only for stereo and RGB-D. This method does not work for monocular.
// Call first Shutdown()
// See format details at: http://www.cvlibs.net/datasets/kitti/eval_odometry.php
void SaveTrajectoryKITTI(const string &filename);
Expand Down

0 comments on commit 1656554

Please sign in to comment.