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
When selecting "filter input coordinates" in the ID tool, my IK data gets resampled even though it was output at a fixed frequency from the IK tool. The code here says it should only resample if the sampling is not uniform:
. There appears to be something wrong with the machine precision check and determining whether or not the sampling is uniform.
I know that my data was resampled because it is a very long file, beyond the max size of the resampling function and thus my sampling rate drops substantially when resampling.
Version 4.5-2024-01-10-3b63585
The text was updated successfully, but these errors were encountered:
Hi @nickbianco, just wanted to say that I tested the files and received two warnings in addition to the machine precision check reported by @tkevinbest:
[warning] Storage.resample: resampling at time step 0.0916798 (but minimum time step is 0.00400000).
For some reasons, a limitation has been set on data size in both resample and resampleLinear methods:
[warning] Cutoff frequency should be less than half sample frequency. Changing the cutoff frequency to 0.49*(Sample Frequency)...cutoff = 5.34469
This is probably a consequence of the above limitation (sample frequency is changed).
When selecting "filter input coordinates" in the ID tool, my IK data gets resampled even though it was output at a fixed frequency from the IK tool. The code here says it should only resample if the sampling is not uniform:
opensim-core/OpenSim/Common/Storage.cpp
Line 2370 in cbf9c74
I know that my data was resampled because it is a very long file, beyond the max size of the resampling function and thus my sampling rate drops substantially when resampling.
Version 4.5-2024-01-10-3b63585
The text was updated successfully, but these errors were encountered: