FiveCrop¶
- class torchvision.transforms.FiveCrop(size)[source]¶
将给定图像裁剪为四个角和中心裁剪。如果图像是 torch Tensor,则应具有 […, H, W] 形状,其中 … 表示任意数量的前导维度
注意
此变换返回一个图像元组,并且您的数据集返回的输入和目标数量可能不匹配。请参阅下文,了解如何处理此问题的一个示例。
- 参数:
size (sequence 或 int) – 所需的裁剪输出大小。如果 size 是一个
int
而不是像 (h, w) 这样的序列,则会生成大小为 (size, size) 的正方形裁剪。如果提供长度为 1 的序列,则将其解释为 (size[0], size[0])。
示例
>>> transform = Compose([ >>> FiveCrop(size), # this is a list of PIL Images >>> Lambda(lambda crops: torch.stack([PILToTensor()(crop) for crop in crops])) # returns a 4D tensor >>> ]) >>> #In your test loop you can do the following: >>> input, target = batch # input is a 5d tensor, target is 2d >>> bs, ncrops, c, h, w = input.size() >>> result = model(input.view(-1, c, h, w)) # fuse batch size and ncrops >>> result_avg = result.view(bs, ncrops, -1).mean(1) # avg over crops
使用
FiveCrop
的示例