view scripts/safety-analysis.py @ 335:3950bfe22768

added functions to export trajectories to csv
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 14 Jun 2013 11:47:24 -0400
parents 1d90e9080cb2
children dc2e68e936c7
line wrap: on
line source

#! /usr/bin/env python

import sys,getopt

import matplotlib.pyplot as plt
import numpy as np

from ConfigParser import ConfigParser

options, args = getopt.getopt(sys.argv[1:], 'hi:d:t:o:f:',['help']) 

options = dict(options)

print options, args

if '--help' in options.keys() or '-h' in options.keys() or len(sys.argv) == 1:
    print('Usage: '+sys.argv[0]+' --help|-h config_file.cfg\n'
          'The program processes indicators for all pairs of road users in the scene\n\n'
          'Order matters between positional and named arguments')
    sys.exit()

# TODO work on the way to indicate an interaction definition

if len(args)>0: # consider there is a configuration file
    params = utils.TrackingParameters()
    params.loadConfigFile(args[0])




# for the demo, output automatically a map