diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 19:33:50 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 19:33:50 +0200 |
| commit | 527c9825e1d29264b61ed980ab785b43a9fe0b32 (patch) | |
| tree | 77edfb63d75b2b9fd481bfe0b97508a0175c148a | |
| parent | 973578e43d9af91f6711cde95aa19c051e7829e5 (diff) | |
smooth sequences
| -rw-r--r-- | run.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -200,6 +200,7 @@ elif arguments_mixVideos: outputPath = './renders/' + arguments_strVideoOut frames = process_two_videos(moduleNetwork, tensorOutput, arguments_strFirst, arguments_strSecond, arguments_aOffset, arguments_bOffset, arguments_steps, arguments_dilate) frames = smooth_frames(moduleNetwork, tensorOutput, frames, arguments_smooth) + print("dilate... {}".format(arguments_dilate)) frames = dilate_frames(moduleNetwork, tensorOutput, frames, arguments_dilate) store_frames(frames, outputPath) elif arguments_steps == 0: @@ -216,5 +217,6 @@ else: outputPath = './renders/' + arguments_strVideoOut frames = process_tree(moduleNetwork, inputFirst, inputSecond, tensorOutput, arguments_steps * arguments_dilate, arguments_dilate) frames = smooth_frames(moduleNetwork, tensorOutput, frames, arguments_smooth) + print("dilate... {}".format(arguments_dilate)) frames = dilate_frames(moduleNetwork, tensorOutput, frames, arguments_dilate) store_frames(frames, outputPath, inputFirst, inputSecond) |
