tf.image.resize_image_with_crop_or_pad(image, target_height, target_width) Crops and/or pads an image to a target width and height
tf.image.random_flip_left_right(image, seed=None) Randomly flip an image horizontally (left to right). With
tf.image.resize_area(images, size, align_corners=None, name=None) Resize images to size using area interpolation
tf.image.grayscale_to_rgb(images, name=None) Converts one or more images from Grayscale to RGB. Outputs
tf.image.decode_png(contents, channels=None, dtype=None, name=None) Decode a PNG-encoded image to a uint8 or uint16 tensor.
tf.image.per_image_whitening(image) Linearly scales image to have zero mean and unit norm. This
tf.image.central_crop(image, central_fraction) Crop the central region of the image. Remove the
tf.image.encode_png(image, compression=None, name=None) PNG-encode an image. image
tf.image.extract_glimpse(input, size, offsets, centered=None, normalized=None, uniform_noise=None, name=None) Extracts a glimpse
tf.image.rgb_to_hsv(images, name=None) Converts one or more images from RGB to HSV. Outputs a
Page 2 of 4