AlonzoLeeeooo
commited on
Commit
•
e3af706
1
Parent(s):
179e461
Update README.md
Browse files
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 |
-
|
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 |
```
|