Skip to content

Commit

Permalink
Update Momus.py
Browse files Browse the repository at this point in the history
  • Loading branch information
LevyHsu committed Mar 22, 2020
1 parent e0eec5c commit d05ffd6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Momus.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,14 +109,14 @@ def mainwindow():
[sg.Text(' ')],
[sg.Text('干扰手段:')],
[sg.Checkbox('近似值处理(Pixel Approximation) 密度:', size=(38,1),default=True)],
[sg.Slider(range=(1, 20), orientation='h', size=(40, 5), default_value=2)],
[sg.Slider(range=(1, 10), orientation='h', size=(40, 5), default_value=1)],
[sg.Checkbox('椒盐噪声(Salt-and-pepper Noise) 密度:', size=(38,1),default=True)],
[sg.Slider(range=(1, 20), orientation='h', size=(40, 5), default_value=2)],
[sg.Slider(range=(1, 10), orientation='h', size=(40, 5), default_value=1)],
[sg.Checkbox('随机线段(Random Scalar) 密度:', size=(38,1),default=True)],
[sg.Slider(range=(1, 10), orientation='h', size=(40, 5), default_value=5)],
[sg.Slider(range=(1, 10), orientation='h', size=(40, 5), default_value=3)],
[sg.Text(' ')],
[sg.Text('迭代次数:')],
[sg.Slider(range=(1, 100), orientation='h', size=(40, 5), default_value=10)],
[sg.Slider(range=(1, 50), orientation='h', size=(40, 5), default_value=15)],
[sg.Submit(tooltip='Click to submit this form'), sg.Cancel()],
]

Expand Down

0 comments on commit d05ffd6

Please sign in to comment.