Skip to content

Commit

Permalink
Adapted stddev parameter for the 2D Gaussians created before DFT rece…
Browse files Browse the repository at this point in the history
…ntering test
  • Loading branch information
VChristiaens committed Feb 13, 2024
1 parent 158b248 commit 8bc9972
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/pre_3_10/test_preproc_recentering.py
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ def test_dft(debug=False):
size = 15
mean = size // 2
cube = create_cube_with_gauss2d(shape=(n_frames, size, size), mean=mean,
stddev=3.)
stddev=2.)

method_args = dict(
center_fr1=(mean, mean),
Expand All @@ -447,7 +447,7 @@ def test_dft(debug=False):
size = 16
mean = size // 2 # - 0.5 # 0-indexed
cube = create_cube_with_gauss2d(shape=(n_frames, size, size), mean=mean,
stddev=3.)
stddev=2.)

method_args = dict(
center_fr1=(mean, mean), subi_size=10, negative=False,
Expand All @@ -468,7 +468,8 @@ def test_dft(debug=False):
size = 15
mean = size // 2
cube = create_cube_with_gauss2d_ring(
shape=(n_frames, size, size), mean=mean, stddev_outer=3, stddev_inner=2
shape=(n_frames, size, size), mean=mean, stddev_outer=2.5,
stddev_inner=1.5
)

method_args = dict(
Expand All @@ -489,7 +490,7 @@ def test_dft(debug=False):
size = 16
mean = size // 2 # - 0.5
cube = create_cube_with_gauss2d_ring(
shape=(n_frames, size, size), mean=mean, stddev_outer=3, stddev_inner=2
shape=(n_frames, size, size), mean=mean, stddev_outer=2.5, stddev_inner=1.5
)

method_args = dict(
Expand Down

0 comments on commit 8bc9972

Please sign in to comment.