Skip to content

Commit 739b2bf

Browse files
committed
Better interface for command line interaction
1 parent e2c209d commit 739b2bf

File tree

1 file changed

+48
-17
lines changed

1 file changed

+48
-17
lines changed

pvg_standalone.py

+48-17
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,67 @@
1-
#!/usr/bin/env python2
2-
import wx, cv
1+
#!/usr/bin/env python
2+
import wx, cv, optparse
33
import pysolovideo as pv
44
from pvg_common import previewPanel, pvg_config
55

66
class CvMovieFrame(wx.Frame):
77
def __init__(self, parent, source, resolution, track, track_type, mask_file, outputFile ):
88
wx.Frame.__init__(self, parent)
99
self.displayPanel = previewPanel(self, size=resolution)
10+
self.SetSize(resolution)
11+
self.Show()
1012

1113
self.displayPanel.setMonitor(source, resolution)
1214
self.displayPanel.mon.setTracking(track, track_type, mask_file, outputFile)
1315
self.displayPanel.Play()
16+
17+
1418

15-
19+
20+
def start(source, resolution, track, track_type, mask_file, outputFile):
21+
"""
22+
start the wx window
23+
"""
24+
25+
app = wx.App()
26+
f = CvMovieFrame(None, source, resolution, track, track_type, mask_file, outputFile )
27+
app.MainLoop()
28+
29+
1630

1731
if __name__=="__main__":
32+
33+
34+
parser = optparse.OptionParser(usage='%prog [options] [argument]>', version='%prog version 0.1')
35+
parser.add_option('-c', '--config', dest='configfile', metavar="CONFIGFILE", help="Config mode | Use specified CONFIGFILE")
36+
parser.add_option('-m', '--monitor', dest='monitor', metavar="MON", help="Config mode | Load monitor MON configfile")
37+
parser.add_option('-i', '--input', dest='source', metavar="SOURCE", help="File mode | Specify a source (camera number, file or folder)")
38+
parser.add_option('-k', '--mask', dest='mask_file', metavar="MASKFILE", help="File mode | Specify a maskfile to be used with file.")
39+
parser.add_option('-t', '--tracktype', dest='track_type', metavar="TT", help="File mode | Specify track type: 0, distance; 1, trikinetics; 2, coordinates")
40+
parser.add_option('-o', '--output', dest='outputFile', metavar="OUTFILE", help="All modes | Specify an output file where to store tracking results. A Mask must be loaded")
1841

19-
options = pvg_config('config.cfg')
42+
(options, args) = parser.parse_args()
2043

21-
resolution = (800, 600)
22-
source = 0 # or filename or dirname
23-
track = True
24-
mask_file = 'Monitor_2.msk'
25-
track_type = 0 # or 1
44+
if options.configfile and options.monitor:
2645

27-
outputFile = '' # or filename.txt to activate writing
46+
opts = pvg_config(options.configfile)
47+
mon = int(options.monitor)
48+
_,source,track,mask_file,track_type = opts.GetMonitor(mon)
49+
resolution = opts.GetOption('FullSize')
50+
outputFile = options.outputFile or ''
51+
start( source, resolution, track, track_type, mask_file, outputFile )
52+
53+
elif options.source:
54+
55+
resolution = (640, 480)
56+
source = options.source # integer or filename or dirname
57+
58+
mask_file = options.mask_file
59+
track_type = options.track_type
60+
track = mask_file and track_type
61+
outputFile = options.outputFile
62+
start( source, resolution, track, track_type, mask_file, outputFile )
2863

29-
_,source,track,mask_file,track_type = options.GetMonitor(0)
30-
31-
app = wx.App()
32-
f = CvMovieFrame(None, source, resolution, track, track_type, mask_file, outputFile )
33-
f.SetSize(resolution)
64+
65+
else:
66+
parser.print_help()
3467

35-
f.Show()
36-
app.MainLoop()

0 commit comments

Comments
 (0)