mmclassification/mmcls/datasets/pipelines/__init__.py

15 lines
612 B
Python
Raw Normal View History

from .auto_augment import Shear
2020-05-21 21:21:43 +08:00
from .compose import Compose
2020-07-07 17:07:58 +08:00
from .formating import (Collect, ImageToTensor, ToNumpy, ToPIL, ToTensor,
Transpose, to_tensor)
2020-07-01 16:09:06 +08:00
from .loading import LoadImageFromFile
2020-07-08 23:54:49 +08:00
from .transforms import (CenterCrop, RandomCrop, RandomFlip, RandomGrayscale,
RandomResizedCrop, Resize)
2020-05-21 21:21:43 +08:00
2020-07-01 16:09:06 +08:00
__all__ = [
2020-07-07 17:07:58 +08:00
'Compose', 'to_tensor', 'ToTensor', 'ImageToTensor', 'ToPIL', 'ToNumpy',
'Transpose', 'Collect', 'LoadImageFromFile', 'Resize', 'CenterCrop',
2020-07-08 23:54:49 +08:00
'RandomFlip', 'Normalize', 'RandomCrop', 'RandomResizedCrop',
'RandomGrayscale', 'Shear'
2020-07-01 16:09:06 +08:00
]