center_crop¶
- torchvision.transforms.functional.center_crop(img: Tensor, output_size: List[int]) Tensor [源代码]¶
在中心裁剪给定的图像。如果图像是 Torch 张量,则它应具有 […, H, W] 形状,其中 … 表示任意数量的前导维度。如果图像大小沿任何边缘小于输出大小,则图像将用 0 填充,然后进行中心裁剪。
- 参数:
img (PIL Image 或 Tensor) – 要裁剪的图像。
output_size (序列 或 int) – 裁剪框的(高度,宽度)。如果为 int 或序列中只有一个 int,则它用于两个方向。
- 返回值:
裁剪后的图像。
- 返回类型:
PIL Image 或 Tensor
使用
center_crop
的示例变换图示