crop — Torchvision 0.22 documentation (original) (raw)

torchvision.transforms.functional.crop(img: Tensor, top: int, left: int, height: int, width: int) → Tensor[source]

Crop the given image at specified location and output size. If the image is torch Tensor, it is expected to have […, H, W] shape, where … means an arbitrary number of leading dimensions. If image size is smaller than output size along any edge, image is padded with 0 and then cropped.

Parameters:

Returns:

Cropped image.

Return type:

PIL Image or Tensor

Examples using crop: