ORB_SLAM3 icon indicating copy to clipboard operation
ORB_SLAM3 copied to clipboard

SaveTrajectoryTUM is disabled for monocular

Open felixem opened this issue 3 years ago • 1 comments

In file System.cc we can find the following code:

void System::SaveTrajectoryTUM(const string &filename) { cout << endl << "Saving camera trajectory to " << filename << " ..." << endl; if(mSensor==MONOCULAR) { cerr << "ERROR: SaveTrajectoryTUM cannot be used for monocular." << endl; return; }

Why function "SaveTrajectoryTUM" cannot be used for monocular? What limits the usage of this function when using monocular?

felixem avatar Jun 03 '22 08:06 felixem

I would also be interested in the reasoning for the guard condition.

Tuntenfisch avatar Oct 25 '23 12:10 Tuntenfisch