Skip to content

Commit

Permalink
fixed output format of one white func
Browse files Browse the repository at this point in the history
  • Loading branch information
matko031 committed Nov 23, 2021
1 parent 43bdd90 commit 32bdfb8
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions stimuli/illusions/whites.py
Expand Up @@ -523,10 +523,11 @@ def RHS2007_WE_dual():
orientation="vertical",
)

stim = Stimulus()
stim.img = np.hstack((stim1['img'], stim2['img']))
stim.target_mask = np.hstack((stim1['mask'], stim2['mask']))
return stim
img = np.hstack((stim1['img'], stim2['img']))
mask = np.hstack((stim1['mask'], stim2['mask']))

return {"img": img, "mask": mask}



def RHS2007_WE_anderson():
Expand Down

0 comments on commit 32bdfb8

Please sign in to comment.