kitti-run-seq.py
Go to the documentation of this file.
1 #!/usr/bin/python3
2 
3 import glob, os
4 import sys
5 
6 dir = sys.argv[1]
7 cfg = sys.argv[2]
8 print('Processing directory : ' + dir)
9 print('Using ICP pipeline config : ' + cfg)
10 
11 for i in range(0,1000):
12  f = dir + '/{:06d}.mm'.format(i)
13  fnext = dir + '/{:06d}.mm'.format(i+1)
14  cmd = 'mp2p-icp-run --input-global ' + f + ' --input-local ' + fnext + ' --config-filters-local ' + cfg + ' -c ' + cfg + ' -d'
15  print(cmd)
16  os.system(cmd)


mrpt_local_obstacles
Author(s): Jose-Luis Blanco-Claraco
autogenerated on Mon Aug 14 2023 02:09:03