summaryrefslogtreecommitdiff
path: root/test.py
diff options
context:
space:
mode:
authorJules Laplace <julescarbon@gmail.com>2018-04-22 14:49:13 +0200
committerJules Laplace <julescarbon@gmail.com>2018-04-22 14:49:13 +0200
commit4ece123f007b80a2a49664205eb63f140b934adb (patch)
tree09f1762b3d005a41c841221ae8f20c81ae4a73d4 /test.py
parent46044c7c0f92ea3b4b7162001691125e36fd2d52 (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 7655cdb..69a14b9 100644
--- a/test.py
+++ b/test.py
@@ -65,8 +65,8 @@ if __name__ == '__main__':
tmp_im = im.copy()
array_a = np.multiply(im, 1/frac)
array_b = np.multiply(last_im, (frac-1)/frac)
- print(im.shape, array_a.shape, array_b.shape)
im = np.add(array_a, array_b)
+ print(im.shape, array_a.shape, array_b.shape)
last_im = tmp_im
else:
last_im = im.copy()