-
Notifications
You must be signed in to change notification settings - Fork 0
/
visualize.py
255 lines (229 loc) · 10.3 KB
/
visualize.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
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
import os
import math
import random
import argparse
import torch
import numpy as np
from torchvision.utils import save_image
import models_mae
from util.decoder.utils import tensor_normalize, spatial_sampling
import av
MEAN = (0.45, 0.45, 0.45)
STD = (0.225, 0.225, 0.225)
def get_args_parser():
parser = argparse.ArgumentParser("Visualize MAEs", add_help=False)
parser.add_argument("--mask_ratio", default=0.9, type=float, help="Masking ratio (percentage of removed patches)")
parser.add_argument("--video_dir", default="demo", type=str, help="video directory where the video files are kept")
parser.add_argument("--num_vids", default=1, type=int, help="Number of videos to do")
parser.add_argument("--model_path", default="", type=str, help="path to pretrained model")
parser.add_argument("--model_arch", default="mae_vit_huge_patch14", type=str, help="Model architecture")
return parser
def get_start_end_idx(video_size, clip_size, clip_idx, num_clips_uniform, use_offset=False):
"""
Sample a clip of size clip_size from a video of size video_size and
return the indices of the first and last frame of the clip. If clip_idx is
-1, the clip is randomly sampled, otherwise uniformly split the video to
num_clips_uniform clips, and select the start and end index of clip_idx-th video clip.
Args:
video_size (int): number of overall frames.
clip_size (int): size of the clip to sample from the frames.
clip_idx (int): if clip_idx is -1, perform random jitter sampling. If
clip_idx is larger than -1, uniformly split the video to num_clips_uniform
clips, and select the start and end index of the clip_idx-th video
clip.
num_clips_uniform (int): overall number of clips to uniformly sample from the
given video for testing.
Returns:
start_idx (int): the start frame index.
end_idx (int): the end frame index.
"""
delta = max(video_size - clip_size, 0)
if clip_idx == -1:
# Random temporal sampling.
start_idx = random.uniform(0, delta)
else:
if use_offset:
if num_clips_uniform == 1:
# Take the center clip if num_clips_uniform is 1.
start_idx = math.floor(delta / 2)
else:
# Uniformly sample the clip with the given index.
start_idx = clip_idx * math.floor(delta / (num_clips_uniform - 1))
else:
# Uniformly sample the clip with the given index.
start_idx = delta * clip_idx / num_clips_uniform
end_idx = start_idx + clip_size - 1
return start_idx, end_idx, start_idx / delta if delta != 0 else 0.0
def pyav_decode_stream(container, start_pts, end_pts, stream, stream_name, buffer_size=0):
"""
Decode the video with PyAV decoder.
Args:
container (container): PyAV container.
start_pts (int): the starting Presentation TimeStamp to fetch the
video frames.
end_pts (int): the ending Presentation TimeStamp of the decoded frames.
stream (stream): PyAV stream.
stream_name (dict): a dictionary of streams. For example, {"video": 0}
means video stream at stream index 0.
buffer_size (int): number of additional frames to decode beyond end_pts.
Returns:
result (list): list of frames decoded.
max_pts (int): max Presentation TimeStamp of the video sequence.
"""
# Seeking in the stream is imprecise. Thus, seek to an ealier PTS by a margin pts.
margin = 1024
seek_offset = max(start_pts - margin, 0)
container.seek(seek_offset, any_frame=False, backward=True, stream=stream)
frames = {}
buffer_count = 0
max_pts = 0
for frame in container.decode(**stream_name):
max_pts = max(max_pts, frame.pts)
if frame.pts < start_pts:
continue
if frame.pts <= end_pts:
frames[frame.pts] = frame
else:
buffer_count += 1
frames[frame.pts] = frame
if buffer_count >= buffer_size:
break
result = [frames[pts] for pts in sorted(frames)]
return result, max_pts
def pyav_decode(
container,
sampling_rate,
num_frames,
clip_idx,
num_clips_uniform=10,
target_fps=30,
use_offset=False,
):
"""
Convert the video from its original fps to the target_fps. If the video
support selective decoding (contain decoding information in the video head),
the perform temporal selective decoding and sample a clip from the video
with the PyAV decoder. If the video does not support selective decoding,
decode the entire video.
Args:
container (container): pyav container.
sampling_rate (int): frame sampling rate (interval between two sampled
frames.
num_frames (int): number of frames to sample.
clip_idx (int): if clip_idx is -1, perform random temporal sampling. If
clip_idx is larger than -1, uniformly split the video to num_clips_uniform
clips, and select the clip_idx-th video clip.
num_clips_uniform (int): overall number of clips to uniformly sample from the
given video.
target_fps (int): the input video may has different fps, convert it to
the target video fps before frame sampling.
Returns:
frames (tensor): decoded frames from the video. Return None if the no
video stream was found.
fps (float): the number of frames per second of the video.
decode_all_video (bool): If True, the entire video was decoded.
"""
# Try to fetch the decoding information from the video head. Some videos do not support fetching the decoding information, in that case it will get None duration.
fps = float(container.streams.video[0].average_rate)
frames_length = container.streams.video[0].frames
duration = container.streams.video[0].duration
if duration is None:
# If failed to fetch the decoding information, decode the entire video.
decode_all_video = True
video_start_pts, video_end_pts = 0, math.inf
else:
# Perform selective decoding.
decode_all_video = False
clip_size = np.maximum(1.0, np.ceil(sampling_rate * (num_frames - 1) / target_fps * fps))
start_idx, end_idx, fraction = get_start_end_idx(frames_length, clip_size, clip_idx, num_clips_uniform, use_offset=use_offset)
timebase = duration / frames_length
video_start_pts = int(start_idx * timebase)
video_end_pts = int(end_idx * timebase)
frames = None
# If video stream was found, fetch video frames from the video.
if container.streams.video:
video_frames, max_pts = pyav_decode_stream(container, video_start_pts, video_end_pts, container.streams.video[0], {"video": 0})
container.close()
frames = [frame.to_rgb().to_ndarray() for frame in video_frames]
frames = torch.as_tensor(np.stack(frames))
return frames, fps, decode_all_video
def temporal_sampling(frames, start_idx, end_idx, num_samples):
"""
Given the start and end frame index, sample num_samples frames between
the start and end with equal interval.
Args:
frames (tensor): a tensor of video frames, dimension is
`num video frames` x `channel` x `height` x `width`.
start_idx (int): the index of the start frame.
end_idx (int): the index of the end frame.
num_samples (int): number of frames to sample.
Returns:
frames (tersor): a tensor of temporal sampled video frames, dimension is
`num clip frames` x `channel` x `height` x `width`.
"""
index = torch.linspace(start_idx, end_idx, num_samples)
index = torch.clamp(index, 0, frames.shape[0] - 1).long()
frames = torch.index_select(frames, 0, index)
return frames
def prepare_video(path):
video_container = av.open(path)
frames, _, _ = pyav_decode(video_container, 4, 16, -1, num_clips_uniform=10, target_fps=30, use_offset=False)
frames = temporal_sampling(frames, 0, 64, 16)
frames = tensor_normalize(frames, torch.tensor(MEAN), torch.tensor(STD)).permute(3, 0, 1, 2)
frames = spatial_sampling(
frames,
spatial_idx=1,
min_scale=256,
max_scale=256,
crop_size=224,
random_horizontal_flip=False,
inverse_uniform_sampling=False,
aspect_ratio=None,
scale=None,
motion_shift=False,
)
return frames
def list_subdirectories(directory):
subdirectories = []
for entry in os.scandir(directory):
if entry.is_dir():
subdirectories.append(entry.path)
subdirectories.sort() # Sort the list of subdirectories alphabetically
return subdirectories
def find_video_files(directory):
"""Recursively search for .mp4 or .webm files in a directory"""
mp4_files = []
subdir_idx = 0
subdirectories = list_subdirectories(directory)
for subdir in subdirectories:
files = os.listdir(subdir)
files.sort()
for file in files:
if file.endswith((".mp4", ".webm")):
mp4_files.append(os.path.join(subdir, file))
subdir_idx += 1
return mp4_files
if __name__ == '__main__':
args = get_args_parser()
args = args.parse_args()
print(args)
# set up and load model
model = models_mae.__dict__[args.model_arch](t_patch_size=2, cls_embed=True, norm_pix_loss=False, sep_pos_embed=True, decoder_depth=4)
model.eval()
checkpoint = torch.load(args.model_path, map_location='cpu')
msg = model.load_state_dict(checkpoint['model'], strict=False)
print(msg)
video_files = find_video_files(directory=args.video_dir)
selected_files = random.sample(video_files, args.num_vids)
print('Selected video files:', selected_files)
for v in selected_files:
vid = prepare_video(v)
with torch.no_grad():
_, _, _, vis = model(vid.unsqueeze(0), mask_ratio=args.mask_ratio, visualize=True, mask_type='random')
vis = vis[0].permute(0, 2, 1, 3, 4)
a = vis[0, :, :, :, :]
b = vis[1, :, :, :, :]
c = vis[2, :, :, :, :]
vis = torch.cat((a, b, c), 0)
print(vis.shape)
save_image(vis[::2], f'{os.path.splitext(os.path.basename(v))[0]}.jpg', nrow=8, padding=1, normalize=True, scale_each=True)