【Pytorch】torchvision.utils.save_image直接保存tensor为图片

torchvision.utils.save_image(tensor: Union[torch.Tensor, List[torch.Tensor]], fp: Union[str, pathlib.Path, BinaryIO], nrow: int = 8, padding: int = 2, normalize: bool = False, range: Optional[Tuple[int, int]] = None, scale_each: bool = False, pad_value: int = 0, format: Optional[str] = None) → None[SOURCE]

Save a given Tensor into an image file.Parameters

  • tensor (Tensor or list) – Image to be saved. If given a mini-batch tensor, saves the tensor as a grid of images by calling make_grid.
  • fp (string or file object) – A filename or a file object
  • format (Optional) – If omitted, the format to use is determined from the filename extension. If a file object was used instead of a filename, this parameter should always be used.
  • **kwargs – Other arguments are documented in make_grid.

未经允许不得转载!【Pytorch】torchvision.utils.save_image直接保存tensor为图片