We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b53966 commit 99ba810Copy full SHA for 99ba810
1 file changed
openpiv/windef.py
@@ -129,11 +129,12 @@ class PIVSettings:
129
min_max_v_disp: Tuple=(-30, 30)
130
# The second filter is based on the global STD threshold
131
std_threshold: int=10 # threshold of the std validation
132
- # The third filter is the median test (not normalized at the moment)
+ # The third filter is the median test: pick between normalized and regular
133
+ median_normalized: bool=False # False = do regular median, True = do normalized median
134
median_threshold: int=3 # threshold of the median validation
135
+ median_size: int=1 # defines the size of the local median
136
# On the last iteration, an additional validation can be done based on
137
# the S/N.
- median_size: int=1 # defines the size of the local median
138
139
140
0 commit comments