From c7b978d143619e2b83fc4f2a08d6625665d69620 Mon Sep 17 00:00:00 2001 From: xujinling Date: Wed, 15 Jun 2022 20:19:39 +0800 Subject: [PATCH] l Signed-off-by: xujinling --- video_swin_transformer.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/video_swin_transformer.py b/video_swin_transformer.py index b69e56e..d0af874 100644 --- a/video_swin_transformer.py +++ b/video_swin_transformer.py @@ -67,20 +67,15 @@ class VideoSwinTransformer(NNOperator): ) def decoder_video(self, data: List[VideoFrame]): - video = numpy.stack([img.astype(numpy.float32) / 255. for img in data], axis=0) - print(video.shape) assert len(video.shape) == 4 video = video.transpose(3, 0, 1, 2) # twhc -> ctwh - print(video.shape) video = transform_video( video=video, **self.transform_cfgs ) - print(video.shape) # [B x C x T x H x W] video = video.to(self.device)[None, ...] - print(video.shape) return video def __call__(self, video: List[VideoFrame]):