Skip to content

Commit

Permalink
Update roou.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Ireneruru committed Feb 22, 2017
1 parent 765d5c3 commit c5c123b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion roou.py
Expand Up @@ -125,7 +125,7 @@ def roou():
if whitenoise_var < 0:
whitenoise_var = 0.00000001

whitenoise = np.random.normal(0, whitenoise_var * 50, (data_g.shape[0], data_g.shape[1]))
whitenoise = np.random.normal(0, np.sqrt(whitenoise_var) , (data_g.shape[0], data_g.shape[1]))

figure_blurred[:,:,0] = figure_blurred[:,:,0] + whitenoise
figure_blurred[:,:,1] = figure_blurred[:,:,1] + whitenoise
Expand Down

0 comments on commit c5c123b

Please sign in to comment.