Skip to content

Commit

Permalink
Update interpolator_fade_single.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jford49 authored Nov 8, 2023
1 parent 53fd5da commit ceac55c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions eval/interpolator_fade_single.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
os.environ['TF_CPP_MIN_LOG_LEVEL'] = '1'


_FOLDER_IN1 = flags.DEFINE_string(
_FOLDER_IN = flags.DEFINE_string(
name='folder_in',
default=None,
help='The folder with source stream images.',
Expand Down Expand Up @@ -98,7 +98,7 @@ def _run_interpolator() -> None:

frames = list()
if _OUTPUT_VIDEO.value:
photo1_path = path.join(_FOLDER_IN1.value, image_path_list1[0])
photo1_path = path.join(_FOLDER_IN.value, image_path_list1[0])
image_1 = util.read_image(photo1_path)
frames.append(image_1)

Expand Down

0 comments on commit ceac55c

Please sign in to comment.