comparison scripts/extract-appearance-images.py @ 1028:cc5cb04b04b0

major update using the trafficintelligence package name and install through pip
author Nicolas Saunier <nicolas.saunier@polymtl.ca>
date Fri, 15 Jun 2018 11:19:10 -0400
parents 933670761a57
children 2397de73770d
comparison
equal deleted inserted replaced
1027:6129296848d3 1028:cc5cb04b04b0
3 import numpy as np, cv2 3 import numpy as np, cv2
4 import argparse, os 4 import argparse, os
5 from pandas import read_csv 5 from pandas import read_csv
6 from matplotlib.pyplot import imshow, figure 6 from matplotlib.pyplot import imshow, figure
7 7
8 import cvutils, moving, ml, storage 8 from trafficintelligence import cvutils, moving, ml, storage
9 9
10 parser = argparse.ArgumentParser(description='The program extracts labeled image patches to train the HoG-SVM classifier, and optionnally speed information') 10 parser = argparse.ArgumentParser(description='The program extracts labeled image patches to train the HoG-SVM classifier, and optionnally speed information')
11 parser.add_argument('--cfg', dest = 'configFilename', help = 'name of the configuration file', required = True) 11 parser.add_argument('--cfg', dest = 'configFilename', help = 'name of the configuration file', required = True)
12 parser.add_argument('-d', dest = 'databaseFilename', help = 'name of the Sqlite database file (overrides the configuration file)') 12 parser.add_argument('-d', dest = 'databaseFilename', help = 'name of the Sqlite database file (overrides the configuration file)')
13 parser.add_argument('-i', dest = 'videoFilename', help = 'name of the video file (overrides the configuration file)') 13 parser.add_argument('-i', dest = 'videoFilename', help = 'name of the video file (overrides the configuration file)')