Generate New Images using data augmentation and save those images

I have a set of 3 images. I want to use random data augmentation to generate 3000 new images from these 3 images. I haven’t found much by googling. I guess I am googling the wrong keywords. Can anyone please give me a useful direction to look?

You could use the torchvision transformations to transform an image and then use the torchvision utils to save a tensor as an image here.

1 Like