Added
- An Error-State-Kalman-Filter with rts smoothing (`RtsKalman`) was added that can be used to estimate orientation and
position over longer regions by detecting its own ZUPTs.
This can (should) be used in combination with `RegionLevelTrajectory`.
- A `RegionLevelTrajectory` class that calculates trajectories for entire ROIs/gait sequences.
Otherwise the interface is very similar to `StrideLevelTrajectory`.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/87,
https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/98,
https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/85)
- Added a new example for `RegionLevelTrajectory`.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/87)
- Support for trajectory methods that can calculate orientation and position in one go is added for
`StrideLevelTrajectory` (https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/87)
- Implemented local warping constraints for DTW. This should help in cases were only parts of a sequence are matched
instead of the entire sequence.
These constraints are available for `BaseDTW` and `BarthDTW`, but are **off** by default.
A new class `ConstrainedBarthDTW` was added, that has the constraints **on** by default.
- Added support for `MultiSensorStrideLists` for all evaluation functions in `evaluation_utils.stride_segmentation`.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/91)
- Global validation errors for region of interest list
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/88)
- Global validation errors for orientation/position/velocity lists
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/88,
https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/95)
- New evaluation functions to compare the results of event detection methods with ground truth
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/92)
- Added the functionality to merge gait sequences from individual sensors in `UllrichGaitSequenceDetection`
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/93)
Changed
- The initial orientation for the Stride and Region Level trajectory now uses the correct number of samples as input.
This might change the output of the integration method slightly!
However, it also allows to pass 0 for `align_window_length` and hence, just use the first sample of the integration
region to estimate the initial orientation.
(mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/98)
- It is now ensured that in **all** in gaitmap where a start and an end sample is provided, the end sample is
**exclusive**.
Meaning if the respective region should be extracted from a dataarray, you can simply do `data[start:end]`.
All functions that used different assumptions are changed.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/97~,
https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/103)
- The default check for orientation/position/velocity lists now only expects a "sample" column and not a "sample" and a
"s_id" column by default.
The `s_id` parameter was removed and replaced with a more generic `{position, velocity, orientation}_list_type`
parameter than can be used to check for either stride or region based lists.
See the migration guide for more information.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/88)
- Internal restructuring of the evaluation utils module.
In case you used direct imports of the functions from the submodule, you need to update these.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/92)
Deprecated
Removed
Fixed
- Fixed possible `ZeroDivisionError` when using `evaluation_utils.scores`.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/104)
Migration Guide
- In case your algorithm uses `is_{single,multi}_sensor_{position, velocity, orientation}_list` all usages must be
updated to include `{position, velocity, orientation}_list_type="stride"` to restore the default behaviour before the
update.
If you were using the function with `s_id=False`, you can update to `{position, velocity, orientation}_list_type=None`
to get the same behaviour.
Scientific Changes
- All Dtw based methods now produce outputs that follow our index guidelines.
This means that they correctly produce matches, which end index is **exclusive**.
In some cases this might change existing results by adding 1 to the end index.
(https://mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/103)
- The initial orientation in the StrideLevelTrajectory now has a window with exactly the number of samples specified
(instead of one less due to Python indexing).
This will lead to very small changes in the calculated trajectory.
(mad-srv.informatik.uni-erlangen.de/MadLab/GaitAnalysis/gaitmap/-/merge_requests/98)