ContrastTransform

class paddle.vision.transforms. ContrastTransform ( value, keys=None ) [source]

Adjust contrast of the image.

Parameters
  • value (float) – How much to adjust the contrast. Can be any non negative number. 0 gives the original image.

  • keys (list[str]|tuple[str], optional) – Same as BaseTransform. Default: None.

Shape:
  • img(PIL.Image|np.ndarray|Paddle.Tensor): The input image with shape (H x W x C).

  • output(PIL.Image|np.ndarray|Paddle.Tensor): An image with a transform in contrast.

Returns

A callable object of ContrastTransform.

Examples

>>> import numpy as np
>>> from PIL import Image
>>> from paddle.vision.transforms import ContrastTransform

>>> transform = ContrastTransform(0.4)
>>> fake_img = Image.fromarray((np.random.rand(224, 224, 3) * 255.).astype(np.uint8))
>>> fake_img = transform(fake_img)
>>> print(fake_img.size)
(224, 224)