summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-20 12:01:30 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-20 12:01:30 +0200
commit75739d6aa4f0703c74539f00b7ca6c5d83833dfd (patch)
tree96b7d2d6c628bb68602d8fc2104d454ddf8b597a /test.py
parentbb1a3fd6a1d0f065e79354a9d3e72756fc1f28f1 (diff)
wants a tuple
Diffstat (limited to 'test.py')
-rw-r--r--test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/test.py b/test.py
index e2534fd..2855815 100644
--- a/test.py
+++ b/test.py
@@ -47,7 +47,7 @@ if __name__ == '__main__':
if dataset.name() == 'RecursiveDatasetDataLoader':
im = visuals['fake_B']
save_path = render_dir + "frame_{:05d}.png".format(i+1)
- im = resize(im, 248, 248, interp='bicubic')
+ im = resize(im, (248, 248))
im = ImageOps.expand(im, (4,4,4,4))
util.save_image(im, save_path)
webpage.save()