|
1 |
| -#!/usr/bin/env python2 |
2 |
| -import wx, cv |
| 1 | +#!/usr/bin/env python |
| 2 | +import wx, cv, optparse |
3 | 3 | import pysolovideo as pv
|
4 | 4 | from pvg_common import previewPanel, pvg_config
|
5 | 5 |
|
6 | 6 | class CvMovieFrame(wx.Frame):
|
7 | 7 | def __init__(self, parent, source, resolution, track, track_type, mask_file, outputFile ):
|
8 | 8 | wx.Frame.__init__(self, parent)
|
9 | 9 | self.displayPanel = previewPanel(self, size=resolution)
|
| 10 | + self.SetSize(resolution) |
| 11 | + self.Show() |
10 | 12 |
|
11 | 13 | self.displayPanel.setMonitor(source, resolution)
|
12 | 14 | self.displayPanel.mon.setTracking(track, track_type, mask_file, outputFile)
|
13 | 15 | self.displayPanel.Play()
|
| 16 | + |
| 17 | + |
14 | 18 |
|
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 | + |
16 | 30 |
|
17 | 31 | 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") |
18 | 41 |
|
19 |
| - options = pvg_config('config.cfg') |
| 42 | + (options, args) = parser.parse_args() |
20 | 43 |
|
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: |
26 | 45 |
|
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 ) |
28 | 63 |
|
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() |
34 | 67 |
|
35 |
| - f.Show() |
36 |
| - app.MainLoop() |
|
0 commit comments