multi_scale_dataset.py 3.8 KB
Newer Older
S
sibo2rr 已提交
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
#   Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
#
# 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.

from __future__ import print_function

import numpy as np
import os

from paddle.io import Dataset
from paddle.vision import transforms
import cv2
import warnings

from ppcls.data import preprocess
from ppcls.data.preprocess import transform
from ppcls.data.preprocess.ops.operators import DecodeImage
from ppcls.utils import logger
S
sibo2rr 已提交
29
from ppcls.data.dataloader.common_dataset import create_operators
S
sibo2rr 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43


class MultiScaleDataset(Dataset):
    def __init__(
            self,
            image_root,
            cls_label_path,
            transform_ops=None, ):
        self._img_root = image_root
        self._cls_path = cls_label_path
        self.transform_ops = transform_ops
        self.images = []
        self.labels = []
        self._load_anno()
44
        self.has_crop_flag = 1
S
sibo2rr 已提交
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

    def _load_anno(self, seed=None):
        assert os.path.exists(self._cls_path)
        assert os.path.exists(self._img_root)
        self.images = []
        self.labels = []

        with open(self._cls_path) as fd:
            lines = fd.readlines()
            if seed is not None:
                np.random.RandomState(seed).shuffle(lines)
            for l in lines:
                l = l.strip().split(" ")
                self.images.append(os.path.join(self._img_root, l[0]))
                self.labels.append(np.int64(l[1]))
                assert os.path.exists(self.images[-1])

    def __getitem__(self, properties):
        # properites is a tuple, contains (width, height, index)
        img_width = properties[0]
        img_height = properties[1]
        index = properties[2]
        has_crop = False
        if self.transform_ops:
            for i in range(len(self.transform_ops)):
                op = self.transform_ops[i]
S
sibo2rr 已提交
71 72 73
                resize_op = ['RandCropImage', 'ResizeImage', 'CropImage']
                for resize in resize_op:
                    if resize in op:
74
                        if self.has_crop_flag:
G
gaotingquan 已提交
75
                            logger.warning(
76 77 78
                                "Multi scale dataset will crop image according to the multi scale resolution"
                            )
                        self.transform_ops[i][resize] = {
G
gaotingquan 已提交
79
                            'size': (img_width, img_height)
80
                        }
S
sibo2rr 已提交
81
                        has_crop = True
82
                        self.has_crop_flag = 0
S
sibo2rr 已提交
83
        if has_crop == False:
S
sibo2rr 已提交
84
            logger.error("Multi scale dateset requests RandCropImage")
S
sibo2rr 已提交
85 86 87 88 89 90 91
            raise RuntimeError("Multi scale dateset requests RandCropImage")
        self._transform_ops = create_operators(self.transform_ops)

        try:
            with open(self.images[index], 'rb') as f:
                img = f.read()
            if self._transform_ops:
92
                img = transform(img, self._transform_ops)
S
sibo2rr 已提交
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
            img = img.transpose((2, 0, 1))
            return (img, self.labels[index])

        except Exception as ex:
            logger.error("Exception occured when parse line: {} with msg: {}".
                         format(self.images[index], ex))
            rnd_idx = np.random.randint(self.__len__())
            return self.__getitem__(rnd_idx)

    def __len__(self):
        return len(self.images)

    @property
    def class_num(self):
        return len(set(self.labels))