Closed ibrahimhroob closed 3 years ago
@EdwardLiuyc how I can save the trajectory/path in tum format? Thanks
@ibrahimhroob
If you want to change the index to timestamp, maybe you can modify trajectory.cc
to make this happen. And if you want to get tum format path, you can refer to OutputPath()
in map_builder.cc
.
Many thanks for your reply, I have replaced path_content += (std::to_string(path_point_index) + ", ");
with path_content += (std::to_string(frame->GetTimeStamp().ToNanoSec()) + ", ");
(Y)
Hi @EdwardLiuyc
This might be a silly question but can you please confirm the output format of csv file? is it Time/Step, x, y, z, r, p, y? Is there away to bind or replace the step with time-stamp from the point cloud data?
Thanks.