Saturation

class CVAugmentor.assets.augmentations._saturation.Saturation(saturation_factor: int | float | None = None)

Adjust the saturation of an image. Saturation refers to the intensity or purity of the color.

Usage

The class instance must be called.

__init__(saturation_factor: int | float | None = None) None

Constructor of the Saturation class.

Parameters:

saturation_factor (int or float, optional) – Saturation factor. If None, a random saturation factor will be used. The default value is None.

Return type:

None.

_saturation(image: Image) Image

The saturation adjustment operation.

Parameters:

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

Returns:

img_saturated – The saturation adjusted image.

Return type:

Image.Image