tf.image.per_image_standardization

View source on GitHub

Linearly scales each image in image to have mean 0 and variance 1.

tf.image.per_image_standardization(
    image
)

For each 3-D image x in image, computes (x - mean) / adjusted_stddev, where

Args:

Returns:

A Tensor with same shape and dtype as image.

Raises: