permute_channels¶
- torchvision.transforms.v2.functional.permute_channels(inpt: Tensor, permutation: List[int]) Tensor[source]¶
根据给定的排列顺序对输入的通道进行置换。
此函数支持普通的
Tensor、PIL.Image.Image、以及torchvision.tv_tensors.Image和torchvision.tv_tensors.Video。示例
>>> rgb_image = torch.rand(3, 256, 256) >>> bgr_image = F.permute_channels(rgb_image, permutation=[2, 1, 0])
- Parameters:
permutation (List[int]) –
输入通道索引的有效排列。元素的索引决定了输入中的通道索引,值决定了输出中的通道索引。例如,
permutation=[2, 0 , 1]将
ìnpt[..., 0, :, :]放在output[..., 2, :, :],将
ìnpt[..., 1, :, :]放在output[..., 0, :, :], 并且将
ìnpt[..., 2, :, :]放在output[..., 1, :, :].
- Raises:
ValueError – 如果
len(permutation)与输入中的通道数不匹配。