No Augmentation

class CVAugmentor.assets.augmentations._no_augmentation.NoAugmentation

No augmentation. This can be used when you want to copy the image to the output folder without augmenting it.

Usage

The class instance must be called.

__init__() None

Constructor of the No Augmentation class.

Parameters:

None.

Return type:

None.

_no_augmentation(image: Image) Image

The no augmentation operation.

Parameters:

image (Image.Image) – The image to be augmented.

Returns:

image – The original image.

Return type:

Image.Image