|  View source on GitHub | 
Jitters brightness of an image.
tfm.vision.preprocess_ops.random_brightness(
    image: tf.Tensor, brightness: float = 0.0, seed: Optional[int] = None
) -> tf.Tensor
| Args | |
|---|---|
| image | tf.TensorOf shape [height, width, 3] and type uint8. | 
| brightness | float, optionalMagnitude for brightness jitter. Defaults to 0. | 
| seed | int, optionalRandom seed. Defaults to None. | 
| Returns | |
|---|---|
| tf.Tensor | The augmented imageof type uint8. |