fffiloni commited on
Commit
78a0afd
1 Parent(s): ce2b6fe

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -37,7 +37,7 @@ def infer(video_frames, masks_frames, project_name):
37
  os.makedirs(my_masks_directory)
38
 
39
  # Assuming 'images' is a list of image file paths
40
- for idx, image in enumerate(video_frames):
41
  # Get the base file name (without path) from the original location
42
  image_name = os.path.basename(image.name)
43
 
 
37
  os.makedirs(my_masks_directory)
38
 
39
  # Assuming 'images' is a list of image file paths
40
+ for idx, image in enumerate(masks_frames):
41
  # Get the base file name (without path) from the original location
42
  image_name = os.path.basename(image.name)
43