diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-22 14:51:06 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-22 14:51:06 +0200 |
| commit | 1c9efcae8362bfe8f29ac9e2e771b816f700009c (patch) | |
| tree | 78c739f75af4ebdd2b149658595d0e25bf10ae0a /test.py | |
| parent | 6d7dd875211905a2c2126152e042bfcd11139c87 (diff) | |
push
Diffstat (limited to 'test.py')
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ if __name__ == '__main__': tmp_im = im.copy() array_a = np.multiply(im, 1/frac) array_b = np.multiply(last_im, (frac-1)/frac) - im = np.add(array_a, array_b) + im = np.add(array_a, array_b).astype(int) print(im.shape, im.dtype) last_im = tmp_im else: |
