CathIAS / TLIO

Tight Learned Inertial Odometry
Other
277 stars 69 forks source link

Does this repo include RoNIN_3D mentioned in the paper? #16

Closed MathLens closed 3 years ago

MathLens commented 3 years ago

If so, could you provide the corresponding command?

CathIAS commented 3 years ago

Yes! Apologies for the delay. RoNIN 3D baseline is essentially the network part before the filter, and the metrics and plots can be obtained through test.py:

python3 src/main_net.py \
--mode test \
--root_dir data/Dataset \
--test_list data/Dataset/test.txt \
--model_path models/resnet/checkpoint_*.pt \
--out_dir test_outputs \
--save_plot

Having --save_plot option on will save the concatenated trajectories and output visualization into the output directory.

MathLens commented 3 years ago

I see. Thank you!