diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-07-01 13:54:11 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-07-01 13:54:11 +0200 |
| commit | e7e7eddafb2ba70bb06c3bca82ffa380733c39ac (patch) | |
| tree | 35497ab04171d92bdb355957f0904060349fc67e | |
| parent | 83c269f6a3e3dd50e0a0d90aab869c90734d488e (diff) | |
| -rw-r--r-- | run.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -103,7 +103,7 @@ def process_two_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, st frames = [] frames += [ load_image(a_fn) ] frames += recurse_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, steps, steps, steps/2, dilate) - b_fn = os.path.join(b, "frame_{:0>5}.png".format(int(b_offset + len(frames) - dilate))) + b_fn = os.path.join(b, "frame_{:0>5}.png".format(int(b_offset + steps))) if os.path.exists(b_fn): frames += [ load_image(b_fn) ] return frames |
