diff options
| -rw-r--r-- | test.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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() |
