__init__.py 5.3 KB
Newer Older
F
Felix 已提交
1
# Copyright (c) 2021 PaddlePaddle Authors. All Rights Reserved.
F
Felix 已提交
2 3 4 5 6 7 8 9 10 11 12 13 14
#
# 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.

L
leozhang0912 已提交
15
from paddle.vision.transforms import ToTensor, Normalize, RandomHorizontalFlip, RandomResizedCrop, Transpose
F
Felix 已提交
16 17
from ppcls.data.preprocess.ops.autoaugment import ImageNetPolicy as RawImageNetPolicy
from ppcls.data.preprocess.ops.randaugment import RandAugment as RawRandAugment
18
from ppcls.data.preprocess.ops.randaugment import RandomApply
19
from ppcls.data.preprocess.ops.randaugment import RandAugmentV2 as RawRandAugmentV2
G
gaotingquan 已提交
20
from ppcls.data.preprocess.ops.timm_autoaugment import RawTimmAutoAugment
F
Felix 已提交
21 22 23 24 25 26 27 28 29
from ppcls.data.preprocess.ops.cutout import Cutout

from ppcls.data.preprocess.ops.hide_and_seek import HideAndSeek
from ppcls.data.preprocess.ops.random_erasing import RandomErasing
from ppcls.data.preprocess.ops.grid import GridMask

from ppcls.data.preprocess.ops.operators import DecodeImage
from ppcls.data.preprocess.ops.operators import ResizeImage
from ppcls.data.preprocess.ops.operators import CropImage
30
from ppcls.data.preprocess.ops.operators import CropImageAtRatio
H
add xbm  
HydrogenSulfate 已提交
31
from ppcls.data.preprocess.ops.operators import CenterCrop, Resize
F
Felix 已提交
32
from ppcls.data.preprocess.ops.operators import RandCropImage
H
HydrogenSulfate 已提交
33
from ppcls.data.preprocess.ops.operators import RandCropImageV2
F
Felix 已提交
34 35 36 37
from ppcls.data.preprocess.ops.operators import RandFlipImage
from ppcls.data.preprocess.ops.operators import NormalizeImage
from ppcls.data.preprocess.ops.operators import ToCHWImage
from ppcls.data.preprocess.ops.operators import AugMix
W
weishengyu 已提交
38
from ppcls.data.preprocess.ops.operators import Pad
H
HydrogenSulfate 已提交
39 40
from ppcls.data.preprocess.ops.operators import ToTensor
from ppcls.data.preprocess.ops.operators import Normalize
D
dongshuilong 已提交
41
from ppcls.data.preprocess.ops.operators import RandomHorizontalFlip
H
add xbm  
HydrogenSulfate 已提交
42
from ppcls.data.preprocess.ops.operators import RandomResizedCrop
43 44 45
from ppcls.data.preprocess.ops.operators import CropWithPadding
from ppcls.data.preprocess.ops.operators import RandomInterpolationAugment
from ppcls.data.preprocess.ops.operators import ColorJitter
Z
zh-hike 已提交
46
from ppcls.data.preprocess.ops.operators import RandomGrayscale
Z
zhiboniu 已提交
47
from ppcls.data.preprocess.ops.operators import RandomCropImage
H
HydrogenSulfate 已提交
48
from ppcls.data.preprocess.ops.operators import RandomRotation
Z
zhiboniu 已提交
49
from ppcls.data.preprocess.ops.operators import Padv2
50
from ppcls.data.preprocess.ops.operators import RandomRot90
G
gaotingquan 已提交
51
from ppcls.data.preprocess.ops.operators import PCALighting
L
leozhang0912 已提交
52 53
from ppcls.data.preprocess.ops.operators import GaussianBlur

G
gaotingquan 已提交
54
from .ops.operators import format_data
D
dongshuilong 已提交
55
from paddle.vision.transforms import Pad as Pad_paddle_vision
F
Felix 已提交
56

57
from ppcls.data.preprocess.batch_ops.batch_operators import MixupOperator, CutmixOperator, OpSampler, FmixOperator
悟、's avatar
悟、 已提交
58
from ppcls.data.preprocess.batch_ops.batch_operators import MixupCutmixHybrid
F
Felix 已提交
59 60 61

import numpy as np
from PIL import Image
C
cuicheng01 已提交
62
import random
F
Felix 已提交
63

L
leozhang0912 已提交
64

F
Felix 已提交
65 66 67 68 69 70 71 72 73
def transform(data, ops=[]):
    """ transform """
    for op in ops:
        data = op(data)
    return data


class AutoAugment(RawImageNetPolicy):
    """ ImageNetPolicy wrapper to auto fit different img types """
74

F
Felix 已提交
75
    def __init__(self, *args, **kwargs):
G
gaotingquan 已提交
76
        super().__init__(*args, **kwargs)
F
Felix 已提交
77 78 79 80 81 82

    def __call__(self, img):
        if not isinstance(img, Image.Image):
            img = np.ascontiguousarray(img)
            img = Image.fromarray(img)

G
gaotingquan 已提交
83
        img = super().__call__(img)
F
Felix 已提交
84 85 86 87 88 89 90 91 92

        if isinstance(img, Image.Image):
            img = np.asarray(img)

        return img


class RandAugment(RawRandAugment):
    """ RandAugment wrapper to auto fit different img types """
93

F
Felix 已提交
94
    def __init__(self, *args, **kwargs):
G
gaotingquan 已提交
95
        super().__init__(*args, **kwargs)
F
Felix 已提交
96 97 98 99 100 101

    def __call__(self, img):
        if not isinstance(img, Image.Image):
            img = np.ascontiguousarray(img)
            img = Image.fromarray(img)

G
gaotingquan 已提交
102 103 104 105 106 107 108 109
        img = super().__call__(img)

        if isinstance(img, Image.Image):
            img = np.asarray(img)

        return img


110 111 112 113 114 115
class RandAugmentV2(RawRandAugmentV2):
    """ RandAugmentV2 wrapper to auto fit different img types """

    def __init__(self, *args, **kwargs):
        super().__init__(*args, **kwargs)

116 117 118 119 120 121 122 123 124 125 126 127
    def __call__(self, img):
        if not isinstance(img, Image.Image):
            img = np.ascontiguousarray(img)
            img = Image.fromarray(img)

        img = super().__call__(img)

        if isinstance(img, Image.Image):
            img = np.asarray(img)

        return img

128

G
gaotingquan 已提交
129 130 131
class TimmAutoAugment(RawTimmAutoAugment):
    """ TimmAutoAugment wrapper to auto fit different img tyeps. """

C
cuicheng01 已提交
132
    def __init__(self, prob=1.0, *args, **kwargs):
G
gaotingquan 已提交
133
        super().__init__(*args, **kwargs)
C
cuicheng01 已提交
134
        self.prob = prob
G
gaotingquan 已提交
135

G
gaotingquan 已提交
136 137
    @format_data
    def __call__(self, img):
G
gaotingquan 已提交
138 139 140
        if not isinstance(img, Image.Image):
            img = np.ascontiguousarray(img)
            img = Image.fromarray(img)
C
cuicheng01 已提交
141 142
        if random.random() < self.prob:
            img = super().__call__(img)
F
Felix 已提交
143 144
        if isinstance(img, Image.Image):
            img = np.asarray(img)
G
gaotingquan 已提交
145

L
leozhang0912 已提交
146
        return img