single_dataset.py 1.5 KB
Newer Older
Q
qingqing01 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14
#   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.

15
from .base_dataset import BaseDataset
L
LielinJiang 已提交
16 17 18 19 20 21 22
from .builder import DATASETS


@DATASETS.register()
class SingleDataset(BaseDataset):
    """
    """
23 24
    def __init__(self, dataroot, preprocess):
        """Initialize single dataset class.
L
LielinJiang 已提交
25 26

        Args:
27 28
            dataroot (str): Directory of dataset.
            preprocess (list[dict]): A sequence of data preprocess config.
L
LielinJiang 已提交
29
        """
L
LielinJiang 已提交
30
        super(SingleDataset, self).__init__(preprocess)
31 32
        self.dataroot = dataroot
        self.data_infos = self.prepare_data_infos()
L
LielinJiang 已提交
33

34 35
    def prepare_data_infos(self):
        """prepare image paths from a folder.
L
LielinJiang 已提交
36

37 38
        Returns:
            list[dict]: List that contains paired image paths.
L
LielinJiang 已提交
39
        """
40 41 42 43
        data_infos = []
        paths = sorted(self.scan_folder(self.dataroot))
        for path in paths:
            data_infos.append(dict(A_path=path))
L
LielinJiang 已提交
44

45
        return data_infos