You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Pose2Sim/Demo_Batch/Config.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -208,8 +208,8 @@ make_c3d = true # also save triangulated data in c3d format
208
208
209
209
# Most intuitive and standard filter in biomechanics
210
210
[filtering.butterworth]
211
-
order = 4
212
211
cut_off_frequency = 6# Hz # Will be divided by slowmo_factor to be equivalent to non slowed-down video
212
+
order = 4
213
213
214
214
# Used in countless applications, this one is a simplified Kalman filter
215
215
[filtering.kalman]
@@ -219,8 +219,8 @@ make_c3d = true # also save triangulated data in c3d format
219
219
220
220
# Automatically determines optimal parameters for each point, which is good when some move faster than others (eg fingers vs hips).
221
221
[filtering.gcv_spline]
222
-
cut_off_frequency = 'auto'# 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is sometimes unstable
223
-
smoothing_factor = 0.1# >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
222
+
cut_off_frequency = 'auto'# 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is usually better, unless the signal is too short (noise can then be considered as signal -> trajectories not filtered)
223
+
smoothing_factor = 1.0# >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
224
224
225
225
[filtering.loess]
226
226
nb_values_used = 5# = fraction of data used * nb frames
Copy file name to clipboardExpand all lines: Pose2Sim/Demo_Batch/Trial_1/Config.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -207,8 +207,8 @@
207
207
208
208
# # Most intuitive and standard filter in biomechanics
209
209
# [filtering.butterworth]
210
-
# order = 4
211
210
# cut_off_frequency = 6 # Hz # Will be divided by slowmo_factor to be equivalent to non slowed-down video
211
+
# order = 4
212
212
213
213
# # Used in countless applications, this one is a simplified Kalman filter
214
214
# [filtering.kalman]
@@ -218,8 +218,8 @@
218
218
219
219
# # Automatically determines optimal parameters for each point, which is good when some move faster than others (eg fingers vs hips).
220
220
# [filtering.gcv_spline]
221
-
# cut_off_frequency = 'auto' # 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is sometimes unstable
222
-
# smoothing_factor = 0.1 # >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
221
+
# cut_off_frequency = 'auto' # 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is usually better, unless the signal is too short (noise can then be considered as signal -> trajectories not filtered)
222
+
# smoothing_factor = 1.0 # >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
223
223
224
224
# [filtering.loess]
225
225
# nb_values_used = 5 # = fraction of data used * nb frames
Copy file name to clipboardExpand all lines: Pose2Sim/Demo_Batch/Trial_2/Config.toml
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -207,8 +207,8 @@ keypoints_to_consider = ['RWrist'] # 'all' if all points should be considered, f
207
207
208
208
# # Most intuitive and standard filter in biomechanics
209
209
# [filtering.butterworth]
210
-
# order = 4
211
210
# cut_off_frequency = 6 # Hz # Will be divided by slowmo_factor to be equivalent to non slowed-down video
211
+
# order = 4
212
212
213
213
# # Used in countless applications, this one is a simplified Kalman filter
214
214
# [filtering.kalman]
@@ -218,8 +218,8 @@ keypoints_to_consider = ['RWrist'] # 'all' if all points should be considered, f
218
218
219
219
# # Automatically determines optimal parameters for each point, which is good when some move faster than others (eg fingers vs hips).
220
220
# [filtering.gcv_spline]
221
-
# cut_off_frequency = 'auto' # 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is sometimes unstable
222
-
# smoothing_factor = 0.1 # >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
221
+
# cut_off_frequency = 'auto' # 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is usually better, unless the signal is too short (noise can then be considered as signal -> trajectories not filtered)
222
+
# smoothing_factor = 1.0 # >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
223
223
224
224
# [filtering.loess]
225
225
# nb_values_used = 5 # = fraction of data used * nb frames
Copy file name to clipboardExpand all lines: Pose2Sim/Demo_MultiPerson/Config.toml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -201,15 +201,15 @@ make_c3d = true # save triangulated data in c3d format in addition to trc
201
201
[filtering]
202
202
reject_outliers = true# Hampel filter for outlier rejection before other filtering methods. Can be slow. Rejects outliers that are outside of a 95% confidence interal from the median in a sliding window of size 7.
203
203
filter = true# Proceed to further filtering after outlier rejection.
204
-
type = 'butterworth'# butterworth, gvc_spline, kalman, gaussian, LOESS, median, butterworth_on_speed
204
+
type = 'butterworth'# butterworth, kalman, gvc_spline, gaussian, LOESS, median, butterworth_on_speed
205
205
206
206
display_figures = true# true or false (lowercase)
207
207
make_c3d = true# also save triangulated data in c3d format
208
208
209
209
# Most intuitive and standard filter in biomechanics
210
210
[filtering.butterworth]
211
-
order = 4
212
211
cut_off_frequency = 6# Hz # Will be divided by slowmo_factor to be equivalent to non slowed-down video
212
+
order = 4
213
213
214
214
# Used in countless applications, this one is a simplified Kalman filter
215
215
[filtering.kalman]
@@ -219,8 +219,8 @@ make_c3d = true # also save triangulated data in c3d format
219
219
220
220
# Automatically determines optimal parameters for each point, which is good when some move faster than others (eg fingers vs hips).
221
221
[filtering.gcv_spline]
222
-
cut_off_frequency = 'auto'# 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is sometimes unstable
223
-
smoothing_factor = 0.1# >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
222
+
cut_off_frequency = 'auto'# 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is usually better, unless the signal is too short (noise can then be considered as signal -> trajectories not filtered)
223
+
smoothing_factor = 1.0# >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
224
224
225
225
[filtering.loess]
226
226
nb_values_used = 5# = fraction of data used * nb frames
Copy file name to clipboardExpand all lines: Pose2Sim/Demo_SinglePerson/Config.toml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -201,15 +201,15 @@ make_c3d = true # save triangulated data in c3d format in addition to trc
201
201
[filtering]
202
202
reject_outliers = true# Hampel filter for outlier rejection before other filtering methods. Can be slow. Rejects outliers that are outside of a 95% confidence interal from the median in a sliding window of size 7.
203
203
filter = true# Proceed to further filtering after outlier rejection.
204
-
type = 'butterworth'# butterworth, gvc_spline, kalman, gaussian, LOESS, median, butterworth_on_speed
204
+
type = 'butterworth'# butterworth, kalman, gvc_spline, gaussian, LOESS, median, butterworth_on_speed
205
205
206
206
display_figures = true# true or false (lowercase)
207
207
make_c3d = true# also save triangulated data in c3d format
208
208
209
209
# Most intuitive and standard filter in biomechanics
210
210
[filtering.butterworth]
211
-
order = 4
212
211
cut_off_frequency = 6# Hz # Will be divided by slowmo_factor to be equivalent to non slowed-down video
212
+
order = 4
213
213
214
214
# Used in countless applications, this one is a simplified Kalman filter
215
215
[filtering.kalman]
@@ -219,8 +219,8 @@ make_c3d = true # also save triangulated data in c3d format
219
219
220
220
# Automatically determines optimal parameters for each point, which is good when some move faster than others (eg fingers vs hips).
221
221
[filtering.gcv_spline]
222
-
cut_off_frequency = 'auto'# 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is sometimes unstable
223
-
smoothing_factor = 0.1# >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
222
+
cut_off_frequency = 'auto'# 'auto' or int # If int, behaves like a Butterworth filter. 'auto' is usually better, unless the signal is too short (noise can then be considered as signal -> trajectories not filtered)
223
+
smoothing_factor = 1.0# >=0, ignored if cut_off_frequency != 'auto'. Biases results towards more smoothing (>1) or more fidelity to data (<1)
224
224
225
225
[filtering.loess]
226
226
nb_values_used = 5# = fraction of data used * nb frames
0 commit comments