This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 334
/
create_k700_data_files.py
213 lines (184 loc) · 6.69 KB
/
create_k700_data_files.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
# Copyright (c) Facebook, Inc. and its affiliates.
# This source code is licensed under the MIT license found in the
# LICENSE file in the root directory of this source tree.
import argparse
import os
from typing import Optional, Tuple
import numpy as np
from PIL import Image
from torch.utils.data import DataLoader
from torchvision.datasets.utils import download_url
from tqdm import tqdm
from vissl.utils.download import download_and_extract_archive
from vissl.utils.io import save_file
try:
import av
except ImportError:
raise ValueError("You must have pyav installed to run this script: pip install av.")
def get_argument_parser():
"""
List of arguments supported by the script
"""
parser = argparse.ArgumentParser()
parser.add_argument(
"-i",
"--input",
type=str,
help="The input folder contains the expanded UCF-101 archive files",
)
parser.add_argument(
"-o",
"--output",
type=str,
help="The output folder containing the disk_folder output",
)
parser.add_argument(
"-d",
"--download",
action="store_const",
const=True,
default=False,
help="To download the original dataset and decompress it in the input folder",
)
parser.add_argument(
"-w",
"--workers",
type=int,
default=8,
help="Number of parallel worker used to decode videos",
)
return parser
def download_dataset(root: str):
"""
Download the K700 dataset video path, annotations and videos
"""
# Download the video path and the annotations
for split in ["train", "val"]:
download_url(
root=root,
url=f"https://s3.amazonaws.com/kinetics/700_2020/{split}/k700_2020_{split}_path.txt",
)
download_url(
root=root,
url=f"https://s3.amazonaws.com/kinetics/700_2020/annotations/{split}.csv",
)
# Download all the videos and expand the archive
for split in ["train", "val"]:
with open(os.path.join(root, f"k700_2020_{split}_path.txt")) as f:
for line in f:
video_batch_url = line.strip()
split_root = os.path.join(root, split)
download_and_extract_archive(
url=video_batch_url, download_root=split_root
)
class KineticsMiddleFrameDataset:
"""
Dataset used to parallelize the transformation of the dataset via a DataLoader
"""
def __init__(self, data_path: str, split: str):
self.data_path = data_path
self.split = split
self.split_path = os.path.join(data_path, split)
self.video_paths = []
self.video_labels = []
self._init_dataset()
def _init_dataset(self):
"""
Find all the video paths and the corresponding labels
"""
for label in os.listdir(self.split_path):
label_path = os.path.join(self.split_path, label)
if not os.path.isdir(label_path):
continue
for file_name in os.listdir(label_path):
file_ext = os.path.splitext(file_name)[1]
if file_ext == ".mp4":
self.video_paths.append(os.path.join(label_path, file_name))
self.video_labels.append(label)
@staticmethod
def _extract_middle_frame(file_path: str) -> Optional[Image.Image]:
"""
Extract the middle frame out of a video clip following
the protocol of CLIP (https://arxiv.org/pdf/2103.00020.pdf)
at Appendix A.1
"""
with av.open(file_path) as container:
if len(container.streams.video) > 0:
nb_frames = container.streams.video[0].frames
vid_stream = container.streams.video[0]
for i, frame in enumerate(container.decode(vid_stream)):
if i - 1 == nb_frames // 2:
return frame.to_image()
return None
def __len__(self):
return len(self.video_paths)
def __getitem__(self, idx: int) -> Tuple[Image.Image, str, str, str]:
video_path = self.video_paths[idx]
label = self.video_labels[idx]
mid_frame = self._extract_middle_frame(video_path)
video_name = os.path.split(video_path)[1]
image_name = os.path.splitext(video_name)[0] + ".jpg"
return mid_frame, image_name, label, video_path
def clean_label(label: str) -> str:
"""
Return a label without spaces or parenthesis
"""
for c in "()":
label = label.replace(c, "")
for c in " ":
label = label.replace(c, "_")
return label.strip("_")
def create_split(input_path: str, output_path: str, split: str, num_workers: int):
"""
Create one split of the disk_folder format and the associated disk_filelist files
"""
image_paths = []
image_labels = []
error_paths = []
# Create the disk_folder format
dataset = KineticsMiddleFrameDataset(data_path=input_path, split=split)
loader = DataLoader(
dataset, num_workers=num_workers, batch_size=1, collate_fn=lambda x: x[0]
)
for mid_frame, image_name, label, video_path in tqdm(loader, total=len(dataset)):
if mid_frame is not None:
label = clean_label(label)
label_folder = os.path.join(output_path, f"{split}_images", label)
os.makedirs(label_folder, exist_ok=True)
image_path = os.path.join(label_folder, image_name)
with open(image_path, "w") as image_file:
mid_frame.save(image_file)
image_paths.append(image_path)
image_labels.append(label)
else:
error_paths.append(video_path)
# Save the disk_filelist format
save_file(
np.array(image_paths), filename=os.path.join(output_path, f"{split}_images.npy")
)
save_file(
np.array(image_labels),
filename=os.path.join(output_path, f"{split}_labels.npy"),
)
if len(error_paths):
print(f"Number of errors in '{split}' split: {len(error_paths)}")
error_paths_file = os.path.join(output_path, f"{split}_errors.npy")
print(f"Errors are saved in: {error_paths_file}")
save_file(error_paths, filename=error_paths_file)
if __name__ == "__main__":
"""
Example usage:
```
python extra_scripts/datasets/create_k77_data_files.py -i /path/to/k700 -o /output_path/k700 -d
```
"""
args = get_argument_parser().parse_args()
if args.download:
download_dataset(args.input)
for split in ["train", "val"]:
create_split(
input_path=args.input,
output_path=args.output,
split=split,
num_workers=args.workers,
)