to_pil_image — Torchvision 0.22 documentation (original) (raw)
torchvision.transforms.functional.to_pil_image(pic, mode=None)[source]¶
Convert a tensor or an ndarray to PIL Image. This function does not support torchscript.
See ToPILImage for more details.
Parameters:
- pic (Tensor or numpy.ndarray) – Image to be converted to PIL Image.
- mode (PIL.Image mode) – color space and pixel depth of input data (optional).
Returns:
Image converted to PIL Image.
Return type:
PIL Image
Examples using to_pil_image
: