diff options
| author | Jules Laplace <julescarbon@gmail.com> | 2018-04-22 14:12:34 +0200 |
|---|---|---|
| committer | Jules Laplace <julescarbon@gmail.com> | 2018-04-22 14:12:34 +0200 |
| commit | 412fbc9e4970b9b3536f396dccea0bc3fde99d4a (patch) | |
| tree | 38f38582bdb05b5e5e58a4927a3a3ae9d9e39f20 /test.py | |
| parent | c6ed68be9ec8ab7fb6a4cb8b220139269a8de246 (diff) | |
push
Diffstat (limited to 'test.py')
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -63,7 +63,7 @@ if __name__ == '__main__': if i < 1: im = np.divide(im, 2) tmp_im = im.copy() - im += last_im + im = np.add(im, last_im) last_im = tmp_im image_pil = Image.fromarray(im) image_pil.save(save_path) |
