Skip to content

Commit

Permalink
Bugfix: domiijan2015.checkerboard_contrast_contrast original_shape
Browse files Browse the repository at this point in the history
with padding is (100,200), not (100,180)
  • Loading branch information
JorisVincent committed Nov 7, 2022
1 parent 2482da3 commit 4e6dfa5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stimuli/papers/domijan2015.py
Expand Up @@ -990,7 +990,7 @@ def checkerboard_contrast_contrast(

original_shape_np = np.array(SHAPES["checkerboard_contrast_contrast"])
original_visual_np = np.array(original_shape_np) / PPD
original_shape = original_shape_np + 20
original_shape = original_shape_np + np.array((20, 40))
original_visual_size = original_shape / PPD
params.update(
original_shape=original_shape,
Expand Down

0 comments on commit 4e6dfa5

Please sign in to comment.