summaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-25 20:53:35 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-25 20:53:35 +0200
commit8701134065d8c06274ee2980b23320a15e3b22fb (patch)
treedab2ad6c351c8f3353dd8bda96dbc5815baf2853 /run.py
parent65ba3032468545aea2f48d3e57fda7fca66ddd40 (diff)
smooth sequences
Diffstat (limited to 'run.py')
-rw-r--r--run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index 5ce45e3..e99374d 100644
--- a/run.py
+++ b/run.py
@@ -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))