Skip to content

Commit

Permalink
Add line to table for TRAVEL paper
Browse files Browse the repository at this point in the history
  • Loading branch information
AndreasR30 committed Dec 1, 2023
1 parent d86c3cf commit fa3c53b
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion src/evaluation/kitti_evaluation.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -173,11 +173,15 @@ std::string KittiEvaluation::generateEvaluationResults()
// separator
ss << "| :---: | :---: | :---: | :---: | :---: | :---: | :---: |" << std::endl;

// insert results of TRAVEL paper
ss << "| All (**TRAVEL**) | 90.0 / - | 96.7 / - | 93.1 / 4.3 | 93.9 / 3.7 | 24.07 / 11.8 | 70.40 / 34.44 |"
<< std::endl;

// print line for each sequence
for (const auto& entry : evaluation_per_sequence)
{
if (entry.first == -1)
ss << "| All ";
ss << "| All (**Ours**) ";
else
ss << "| " << entry.first << " ";

Expand Down

0 comments on commit fa3c53b

Please sign in to comment.