PyTorch生成一张随机噪声图片

Posted Xavier Jiezou

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PyTorch生成一张随机噪声图片相关的知识,希望对你有一定的参考价值。

在这里插入图片描述

环境

PyTorch安装教程:Windows | Linux | Mac

代码

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生成一张随机噪声图片的主要内容,如果未能解决你的问题,请参考以下文章

WGAN的介绍

SinGAN一张照片即可生成同样的照片(附简化版代码)

Pytorch 的随机选择?

播放随机声音而不重复

教你使用MATLAB绘制超超超炫丽的烟花!

教你使用MATLAB绘制超超超炫丽的烟花!