center_crop

paddle.vision.transforms.center_crop ( img, output_size ) [源代码]

对输入图像进行中心裁剪。

参数

  • img (PIL.Image|np.array) - 用于裁剪的图像。

  • output_size (int|list|tuple): 要裁剪的矩形框的大小:(height, width)。如果是 int 值,则所有方向按照这个值裁剪。

返回

PIL.Image 或 numpy.ndarray,裁剪后的图像。

代码示例

  1. import numpy as np
  2. from PIL import Image
  3. from paddle.vision.transforms import functional as F
  4. fake_img = (np.random.rand(256, 300, 3) * 255.).astype('uint8')
  5. fake_img = Image.fromarray(fake_img)
  6. cropped_img = F.center_crop(fake_img, (150, 100))
  7. print(cropped_img.size)