vflip

paddle.vision.transforms. vflip ( img ) [源代码]

对输入图像进行垂直方向翻转。

参数

  • img (PIL.Image|numpy.ndarray) - 输入的图像。

返回

PIL.Image numpy.ndarray,翻转后的图像数据。

代码示例

import numpy as np
from PIL import Image
from paddle.vision.transforms import functional as F

fake_img = (np.random.rand(256, 300, 3) * 255.).astype('uint8')

fake_img = Image.fromarray(fake_img)

flpped_img = F.vflip(fake_img)
print(flpped_img.size)