2020-08-09 12:09:49 +02:00
|
|
|
#!/usr/bin/env python3
|
2020-03-06 12:51:28 +01:00
|
|
|
|
|
|
|
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)
|
|
|
|
|
2020-03-06 14:45:48 +01:00
|
|
|
datasets_short = [x[8:].split('_')[0] for x in datasets]
|
2020-03-06 12:51:28 +01:00
|
|
|
|
2020-08-09 12:09:49 +02:00
|
|
|
print('\nVisual-Inertial Odometry')
|
|
|
|
print(row_format.format(*datasets_short))
|
2020-03-06 12:51:28 +01:00
|
|
|
|
2020-08-09 12:09:49 +02:00
|
|
|
print(row_format.format(*vio['ate']))
|
|
|
|
#print(row_format.format(*vio['time']))
|
|
|
|
print(row_format.format(*vio['num_frames']))
|
2020-03-06 12:51:28 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|