diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 20:53:35 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 20:53:35 +0200 |
| commit | 8701134065d8c06274ee2980b23320a15e3b22fb (patch) | |
| tree | dab2ad6c351c8f3353dd8bda96dbc5815baf2853 /run.py | |
| parent | 65ba3032468545aea2f48d3e57fda7fca66ddd40 (diff) | |
smooth sequences
Diffstat (limited to 'run.py')
| -rw-r--r-- | run.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -118,7 +118,7 @@ def average_two_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, st print("{}...".format(index)) frames = [] steps *= dilate - for i in range(1, steps * dilate+1, dilate): + for i in range(1, steps * dilate + 1, dilate): a_fn = os.path.join(a, "frame_{:0>5}.png".format(int(i + a_offset))) b_fn = os.path.join(b, "frame_{:0>5}.png".format(int(i + b_offset))) print("{} => {}".format(a_fn, b_fn)) |
