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

tf.image.per_image_standardization

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

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

image An n-D Tensor with at least 3 dimensions, the last 3 of which are the dimensions of each image.

A Tensor with the same shape and dtype as image.

ValueError if the shape of 'image' is incompatible with this function.