Mercurial > hg > nsaunier > traffic-intelligence
comparison python/play-video.py @ 305:ca9131968bce
added sample to replay video
| author | Nicolas Saunier <nicolas.saunier@polymtl.ca> |
|---|---|
| date | Fri, 29 Mar 2013 21:20:12 -0400 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 304:20f9cd972dde | 305:ca9131968bce |
|---|---|
| 1 #! /usr/bin/env python | |
| 2 | |
| 3 import sys,getopt | |
| 4 import cvutils | |
| 5 | |
| 6 options, args = getopt.getopt(sys.argv[1:], 'hi:f:',['help', 'fps=']) | |
| 7 options = dict(options) | |
| 8 print options | |
| 9 | |
| 10 if '--help' in options.keys() or '-h' in options.keys() or len(sys.argv) == 1: | |
| 11 print('Usage: '+sys.argv[0]+' --help|-h -i video-filename [-f first_frame] [--fps frame_rate]') | |
| 12 sys.exit() | |
| 13 | |
| 14 firstFrameNum = 0 | |
| 15 if '-f' in options.keys(): | |
| 16 firstFrameNum = int(options['-f']) | |
| 17 | |
| 18 frameRate = -1 | |
| 19 if '--fps' in options.keys(): | |
| 20 frameRate = int(options['--fps']) | |
| 21 | |
| 22 cvutils.playVideo(options['-i'], firstFrameNum, frameRate) |
