diff options
| -rw-r--r-- | run.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -99,7 +99,7 @@ def recurse_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, count, def process_two_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, steps, dilate): steps *= dilate - a_fn = os.path.join(a, "frame_{:0>5}.png".format(int(a_offset))) + a_fn = os.path.join(a, "frame_{:0>5}.png".format(max(int(a_offset), 1))) frames = [] frames += [ load_image(a_fn) ] frames += recurse_videos(moduleNetwork, tensorOutput, a, b, a_offset, b_offset, steps, steps, steps/2, dilate) |
