summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-25 18:16:26 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-25 18:16:26 +0200
commitbdbd5ea51faedfb6b87de52df6d16338b3ffe363 (patch)
tree95693ee9aa3210ac6724f4f073a22a6a24743ed3
parentc6fcddceca1a61c08a0ae94d17395d9a8462f6bf (diff)
process sequences
-rw-r--r--run.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/run.py b/run.py
index 7726f59..e030a07 100644
--- a/run.py
+++ b/run.py
@@ -90,7 +90,7 @@ def recurse_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, count,
print("{} => {}".format(a_fn, b_fn))
a_np = load_image(a_fn)
b_np = load_image(b_fn)
- frame = recurse_two_frames(moduleNetwork, tensorOutput, a_np, b_np, frame_index, count, count / 2)
+ frame = recurse_two_frames(moduleNetwork, tensorOutput, a_np, b_np, frame_index, count / 2, count / 4)
if step < 2:
return [frame]
else: