tfm.vision.preprocess_ops.center_crop_image

Stay organized with collections Save and categorize content based on your preferences.

Center crop a square shape slice from the input image.

It crops a square shape slice from the image. The side of the actual crop is 224 / 256 = 0.875 of the short side of the original image. References: [1] Very Deep Convolutional Networks for Large-Scale Image Recognition https://arxiv.org/abs/1409.1556 [2] Deep Residual Learning for Image Recognition https://arxiv.org/abs/1512.03385

image a Tensor of shape [height, width, 3] representing the input image.

cropped_image a Tensor representing the center cropped image.