Datasets:

Modalities:
Image
Size:
< 1K
ArXiv:
Libraries:
Datasets
License:
AlonzoLeeeooo commited on
Commit
e3af706
1 Parent(s): 179e461

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +1 -1
README.md CHANGED
@@ -87,7 +87,7 @@ for video_name in tqdm(annotations.keys()):
87
  masks = []
88
  for path in sorted(os.listdir(os.path.join(mask_root, video_name))):
89
  if path != 'Thumbs.db' and path != '.DS_store':
90
- video_frames.append(Image.open(os.path.join(frame_root, path)))
91
 
92
  # (add further operations that you expect in the lines below)
93
  ```
 
87
  masks = []
88
  for path in sorted(os.listdir(os.path.join(mask_root, video_name))):
89
  if path != 'Thumbs.db' and path != '.DS_store':
90
+ masks.append(Image.open(os.path.join(frame_root, path)))
91
 
92
  # (add further operations that you expect in the lines below)
93
  ```