summaryrefslogtreecommitdiff
path: root/run.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-06-25 18:19:12 +0200
committerJules Laplace <julescarbon@gmail.com>2018-06-25 18:19:12 +0200
commit5f86eb4be2cd47bcd4335b6e639b413d67bb8d19 (patch)
tree6fd87b291bc6c80e6532d8d9f072a9192f461dc8 /run.py
parentf7f71439c823607cf2396323f5852e946958a2e1 (diff)
process 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 47dd8d3..9c575e5 100644
--- a/run.py
+++ b/run.py
@@ -89,7 +89,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 / 2, count / 2)
+ frame = recurse_two_frames(moduleNetwork, tensorOutput, a_np, b_np, frame_index, count / 2, count / 4)
if step < 2:
return [frame]
else: