PyTorch生成一张随机噪声图片
Posted Xavier Jiezou
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyTorch生成一张随机噪声图片相关的知识,希望对你有一定的参考价值。
环境
代码
from torchvision.transforms import ToPILImage
import torch
def random_noise(nc, width, height):
'''Generator a random noise image from tensor.
If nc is 1, the Grayscale image will be created.
If nc is 3, the RGB image will be generated.
Args:
nc (int): (1 or 3) number of channels.
width (int): width of output image.
height (int): height of output image.
Returns:
PIL Image.
'''
img = torch.rand(nc, width, height)
img = ToPILImage()(img)
return img
if __name__ == '__main__':
random_noise(3, 256, 256).save('random-noise.jpg')
结果
彩色图 | 灰度图 |
---|---|
参考
https://pytorch.org/docs/stable/generated/torch.rand.html#torch-rand
https://pytorch.org/vision/stable/transforms.html#torchvision.transforms.ToPILImage
以上是关于PyTorch生成一张随机噪声图片的主要内容,如果未能解决你的问题,请参考以下文章