diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 19:10:54 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 19:10:54 +0200 |
| commit | 278296e1110bea0abe49af6087e855c312087d92 (patch) | |
| tree | c351fd50dbd08a3799b86a2cb2e0ba15a81e4d1a /run.py | |
| parent | b06cabfaed85179a5c1f8805f5c0f55b3f916a22 (diff) | |
process sequences
Diffstat (limited to 'run.py')
| -rw-r--r-- | run.py | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -176,7 +176,7 @@ elif arguments_mixVideos: print("{} => {}".format(arguments_strFirst, arguments_strSecond)) outputPath = './renders/' + arguments_strVideoOut frames = process_two_videos(moduleNetwork, tensorOutput, arguments_strFirst, arguments_strSecond, arguments_aOffset, arguments_bOffset, arguments_steps, arguments_dilate) - dilate_frames(moduleNetwork, tensorOutput, frames, arguments_dilate) + frames = dilate_frames(moduleNetwork, tensorOutput, frames, arguments_dilate) store_frames(frames, outputPath) elif arguments_steps == 0: # Process image @@ -191,5 +191,5 @@ else: inputSecond = load_image(arguments_strSecond) outputPath = './renders/' + arguments_strVideoOut frames = process_tree(moduleNetwork, inputFirst, inputSecond, tensorOutput, arguments_steps * arguments_dilate, arguments_dilate) - dilate_frames(moduleNetwork, tensorOutput, frames, arguments_dilate) + frames = dilate_frames(moduleNetwork, tensorOutput, frames, arguments_dilate) store_frames(frames, outputPath, inputFirst, inputSecond) |
