vflipΒΆ
- torchvision.transforms.functional.vflip(img: Tensor) Tensor [source]ΒΆ
Vertically flip the given image.
- Parameters:
img (PIL Image or Tensor) β Image to be flipped. If img is a Tensor, it is expected to be in [β¦, H, W] format, where β¦ means it can have an arbitrary number of leading dimensions.
- Returns:
Vertically flipped image.
- Return type:
PIL Image or Tensor
Examples using
vflip
: