Major changes: - New square-root implementation for optimization and marginalization, giving faster optimization and numerically more stable marginalization. The square root solver is the new default, but the Schur complement based implementation is still available. (Implements the ICCV'21 paper.) - The odometry estimator is now fully templetized and you can run in float or double. Default is float, which works well with the new square-root implementation and gives best runtimes. - Batch evaluation scripts and documentation to reproduce the ICCV'21 experiments. Additional changes: - New options in VIO to marginalize lost landmark right away and not only when the frame is marginalized (enabled by default). - small bugfix for keypoint patch extraction bounds - basalt_vio: more logging for batch evaluation - basalt_vio: better handling of closing the GUI while estimator is still running - basalt_vio: new command line argument to limit the number of frames processed - basalt_vio: new command line argument to save ground truth trajectory - added unit tests for square root marginalization - update basalt-headers - new submodules: gmt, nlohmann/json, magic_enum
63 lines
1.4 KiB
Python
Executable File
63 lines
1.4 KiB
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# BSD 3-Clause License
|
|
#
|
|
# This file is part of the Basalt project.
|
|
# https://gitlab.com/VladyslavUsenko/basalt.git
|
|
#
|
|
# Copyright (c) 2019-2021, Vladyslav Usenko and Nikolaus Demmel.
|
|
# All rights reserved.
|
|
#
|
|
|
|
import os
|
|
import sys
|
|
import json
|
|
|
|
|
|
datasets = ['Seq.', 'dataset-corridor1_512_16', 'dataset-magistrale1_512_16', 'dataset-room1_512_16', 'dataset-slides1_512_16']
|
|
|
|
# Other results.
|
|
|
|
|
|
vio = {
|
|
'ate' : ['VIO RMS ATE [m]'],
|
|
'time' : ['VIO Time [s]'],
|
|
'num_frames' : ['VIO Num. Frames']
|
|
}
|
|
|
|
out_dir = sys.argv[1]
|
|
|
|
def load_data(x, prefix, key):
|
|
fname = out_dir + '/' + prefix + '_' + key
|
|
if os.path.isfile(fname):
|
|
with open(fname, 'r') as f:
|
|
j = json.load(f)
|
|
res = round(j['rms_ate'], 3)
|
|
x['ate'].append(float(res))
|
|
x['time'].append(round(j['exec_time_ns']*1e-9, 3))
|
|
x['num_frames'].append(j['num_frames'])
|
|
else:
|
|
x['ate'].append(float('Inf'))
|
|
x['time'].append(float('Inf'))
|
|
x['num_frames'].append(float('Inf'))
|
|
|
|
|
|
for key in datasets[1:]:
|
|
load_data(vio, 'vio', key)
|
|
|
|
|
|
row_format ="{:>17}" + "{:>13}" * (len(datasets)-1)
|
|
|
|
datasets_short = [x[8:].split('_')[0] for x in datasets]
|
|
|
|
print('\nVisual-Inertial Odometry')
|
|
print(row_format.format(*datasets_short))
|
|
|
|
print(row_format.format(*vio['ate']))
|
|
#print(row_format.format(*vio['time']))
|
|
print(row_format.format(*vio['num_frames']))
|
|
|
|
|
|
|
|
|