Brightness

class CVAugmentor.assets.augmentations._brightness.Brightness(brightness_factor: int | float | None = None)

Adjust the brightness of an image.

Usage

The class instance must be called.

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

Constructor of the Brightness class.

Parameters:

brightness_factor (int or float, optional) – Brightness factor. The default value is None. If None, a random brightness factor will be used.

Return type:

None.

_brightness(image: Image) Image

The brightness adjustment operation.

Parameters:

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

Returns:

img_brightened – The brightness adjusted image.

Return type:

Image.Image