Skip to content

Commit

Permalink
Fix blur_gaussian slider param
Browse files Browse the repository at this point in the history
  • Loading branch information
huchenlei authored May 2, 2024
1 parent e90491a commit f095bbf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/preprocessor/model_free_preprocessors.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ class PreprocessorBlurGaussian(Preprocessor):
def __init__(self):
super().__init__(name="blur_gaussian")
self.slider_1 = PreprocessorParameter(
label="Sigma", minimum=64, maximum=2048, value=512
label="Sigma", minimum=0.01, maximum=64.0, value=9.0
)
self.tags = ["Tile"]

Expand Down

0 comments on commit f095bbf

Please sign in to comment.