Blur

class CVAugmentor.assets.augmentations._blur.Blur(radius: int | float | None = None)

Apply a blur effect to an image.

Usage

The class instance must be called.

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

Constructor of the Blur class.

Parameters:

radius (int or float, optional) – Blur radius. The blur radius is the standard deviation of the Gaussian blur. The default value is None. If None, a random blur radius will be used.

Return type:

None.

_blur(image: Image) Image

The blur operation.

Parameters:

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

Returns:

blurred_image – The blurred image.

Return type:

Image.Image