forked from PaddlePaddle/PaddleVideo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvideo.py
95 lines (87 loc) · 3.76 KB
/
video.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
# copyright (c) 2020 PaddlePaddle Authors. All Rights Reserve.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import os.path as osp
import copy
import random
import numpy as np
from ..registry import DATASETS
from .base import BaseDataset
from ...utils import get_logger
logger = get_logger("paddlevideo")
@DATASETS.register()
class VideoDataset(BaseDataset):
"""Video dataset for action recognition
The dataset loads raw videos and apply specified transforms on them.
The index file is a file with multiple lines, and each line indicates
a sample video with the filepath and label, which are split with a whitesapce.
Example of a inde file:
.. code-block:: txt
path/000.mp4 1
path/001.mp4 1
path/002.mp4 2
path/003.mp4 2
Args:
file_path(str): Path to the index file.
pipeline(XXX): A sequence of data transforms.
**kwargs: Keyword arguments for ```BaseDataset```.
"""
def __init__(self, file_path, pipeline, num_retries=5, suffix='', **kwargs):
self.num_retries = num_retries
self.suffix = suffix
super().__init__(file_path, pipeline, **kwargs)
def load_file(self):
"""Load index file to get video information."""
info = []
with open(self.file_path, 'r') as fin:
for line in fin:
line_split = line.strip().split()
filename, labels = line_split
#TODO(hj): Required suffix format: may mp4/avi/wmv
filename = filename + self.suffix
if self.data_prefix is not None:
filename = osp.join(self.data_prefix, filename)
info.append(dict(filename=filename, labels=int(labels)))
return info
def prepare_train(self, idx):
"""TRAIN & VALID. Prepare the data for training/valid given the index."""
#Try to catch Exception caused by reading corrupted video file
for ir in range(self.num_retries):
try:
results = copy.deepcopy(self.info[idx])
results = self.pipeline(results)
except Exception as e:
#logger.info(e)
if ir < self.num_retries - 1:
logger.info(
"Error when loading {}, have {} trys, will try again".
format(results['filename'], ir))
idx = random.randint(0, len(self.info) - 1)
continue
return results['imgs'], np.array([results['labels']])
def prepare_test(self, idx):
"""TEST. Prepare the data for test given the index."""
#Try to catch Exception caused by reading corrupted video file
for ir in range(self.num_retries):
try:
results = copy.deepcopy(self.info[idx])
results = self.pipeline(results)
except Exception as e:
#logger.info(e)
if ir < self.num_retries - 1:
logger.info(
"Error when loading {}, have {} trys, will try again".
format(results['filename'], ir))
idx = random.randint(0, len(self.info) - 1)
continue
return results['imgs'], np.array([results['labels']])