We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13a3b55 commit 3d07836Copy full SHA for 3d07836
1 file changed
tests/test_image.py
@@ -45,7 +45,7 @@ def get_images(parity, dtype):
45
# numpy array for top-level functions that directly expect it
46
g = grid_2d(size)
47
im_np = (
48
- 2 * gaussian_2d(size, sigma=size / 5)
+ 2 * gaussian_2d(size, mu=(size / 10, size / 10), sigma=size / 5)
49
+ np.sin(7 * np.pi * g["x"]) * np.cos(3 * np.pi * g["y"])
50
).astype(dtype)[np.newaxis]
51
0 commit comments