You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

9 lines
241 B

# -*- coding: utf-8 -*-
from rudalle.pipelines import show
def test_show(sample_image):
img = sample_image.copy()
img = img.resize((256, 256))
pil_images = [img]*5
show(pil_images, nrow=2, save_dir='/tmp/pics', show=False)