summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
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)