diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 18:16:26 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-06-25 18:16:26 +0200 |
| commit | bdbd5ea51faedfb6b87de52df6d16338b3ffe363 (patch) | |
| tree | 95693ee9aa3210ac6724f4f073a22a6a24743ed3 | |
| parent | c6fcddceca1a61c08a0ae94d17395d9a8462f6bf (diff) | |
process sequences
| -rw-r--r-- | run.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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: |
