TensorFlow 1 version | View source on GitHub |
Performs a brightness shift.
tf.keras.preprocessing.image.apply_brightness_shift(
x, brightness
)
Arguments | |
---|---|
x
|
Input tensor. Must be 3D. |
brightness
|
Float. The new brightness value. |
channel_axis
|
Index of axis for channels in the input tensor. |
Returns | |
---|---|
Numpy image tensor. |
Raises | |
---|---|
ValueError if brightness_range isn't a tuple.
|