Center crop a square shape slice from the input image.
tfm.vision.preprocess_ops.center_crop_image(
image, center_crop_fraction: float = CENTER_CROP_FRACTION
)
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
Args |
image
|
a Tensor of shape [height, width, 3] representing the input image.
|
center_crop_fraction
|
a float of ratio between the side of the cropped image
and the short side of the original image
|
Returns |
cropped_image
|
a Tensor representing the center cropped image.
|