W3cubDocs

/TensorFlow Python

tf.image.adjust_brightness

tf.image.adjust_brightness(
    image,
    delta
)

Defined in tensorflow/python/ops/image_ops_impl.py.

See the guide: Images > Image Adjustments

Adjust the brightness of RGB or Grayscale images.

This is a convenience method that converts an RGB image to float representation, adjusts its brightness, and then converts it back to the original data type. If several adjustments are chained it is advisable to minimize the number of redundant conversions.

The value delta is added to all components of the tensor image. Both image and delta are converted to float before adding (and image is scaled appropriately if it is in fixed-point representation). For regular images, delta should be in the range [0,1), as it is added to the image in floating point representation, where pixel values are in the [0,1) range.

Args:

  • image: A tensor.
  • delta: A scalar. Amount to add to the pixel values.

Returns:

A brightness-adjusted tensor of the same shape and type as image.

© 2018 The TensorFlow Authors. All rights reserved.
Licensed under the Creative Commons Attribution License 3.0.
Code samples licensed under the Apache 2.0 License.
https://www.tensorflow.org/api_docs/python/tf/image/adjust_brightness