diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 15:29:38 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 15:29:38 +0200 |
| commit | 60ff067355997fc7dbd3e5309616ddd3812e2634 (patch) | |
| tree | f1fd24fdf550749e311acf4445868f2b125738a0 /run.py | |
| parent | 7d3d1cb632a4d534149542165ec5e78cd46016fd (diff) | |
go hey
Diffstat (limited to 'run.py')
| -rw-r--r-- | run.py | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -16,6 +16,7 @@ arguments_strModel = 'lf' arguments_strFirst = './images/first.png' arguments_strSecond = './images/second.png' arguments_strOut = './result.png' +arguments_strVideo = False arguments_strVideoOut = datetime.now().strftime("sepconv_%Y%m%d_%H%M.mp4") arguments_steps = 0 @@ -32,6 +33,9 @@ for strOption, strArgument in getopt.getopt(sys.argv[1:], '', [ strParameter[2:] elif strOption == '--out': arguments_strOut = strArgument # path to where the output should be stored + elif strOption == '--video': + arguments_strVideoOut = strArgument # path to video + elif strOption == '--video-out': arguments_strVideoOut = strArgument # path to where the video should be stored |
