# HG changeset patch # User Nicolas Saunier # Date 1371075796 14400 # Node ID 5e43b7389c25fee89d765fb0ac1d916aaecdf644 # Parent 42f2b46ec2106c3c59dd91b4cd6c3b649e1f018d script for safety analysis diff -r 42f2b46ec210 -r 5e43b7389c25 python/safety-analysis.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/python/safety-analysis.py Wed Jun 12 18:23:16 2013 -0400 @@ -0,0 +1,33 @@ +#! /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 + config = ConfigParser() + config.readfp(FakeSecHead(open(args[0]))) + sectionHeader = config.sections()[0] + videoFilename = config.get(sectionHeader, 'video-filename') + databaseFilename = config.get(sectionHeader, 'database-filename') + homography = inv(loadtxt(config.get(sectionHeader, 'homography-filename'))) + firstFrameNum = config.getint(sectionHeader, 'frame1') + +