Updated exported poses in TUM format to avoid confusion with header when importing in CloudCompare

This commit is contained in:
matlabbe
2022-02-18 12:17:47 -05:00
parent 9bd758a62c
commit c2c68c0caf

View File

@@ -130,11 +130,11 @@ bool exportPoses(
// header
if(format == 11)
{
fprintf(fout, "# timestamp x y z qx qy qz qw id\n");
fprintf(fout, "#timestamp x y z qx qy qz qw id\n");
}
else
{
fprintf(fout, "# timestamp x y z qx qy qz qw\n");
fprintf(fout, "#timestamp x y z qx qy qz qw\n");
}
}