summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-22 14:22:19 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-22 14:22:19 +0200
commitb47e2079f9b336eba0bedecf0cb352584f770f05 (patch)
tree301a57d32eff3c4fe1edb330dbe05a2999413422 /test.py
parentd792863a75eb61118385b17ab90531a1a78a31b9 (diff)
push
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 c00f017..567e897 100644
--- a/test.py
+++ b/test.py
@@ -65,7 +65,7 @@ if __name__ == '__main__':
im = np.add(np.multiply(im, 1/(frac)), np.multiply(last_im, (frac-1)/(frac)))
last_im = tmp_im
else:
- last_im = im.copy()
+ last_im = im
print(im.shape)
image_pil = Image.fromarray(im)
image_pil.save(save_path)