diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c383bba..eb0bab27 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -57,6 +57,18 @@ project. (https://github.com/mad-lab-fau/gaitmap/pull/13) - A new utility method to intersect stride lists by a region of interest list. (https://github.com/mad-lab-fau/gaitmap/pull/14) +- A new ZuptDetector method `StrideEventZuptDetector` that simply returns the min_vel events of an already provided + event list as ZUPTs. + This is enabled by the new `stride_event_list` parameter of the `detect` method of all ZuptDetector methods (see + Changes) + (https://github.com/mad-lab-fau/gaitmap/pull/14) +- A new ZuptDetector method `ComboZuptDetector` that allows to combine the output of multiple ZuptDetector methods using + either logical "or" or "and". + (https://github.com/mad-lab-fau/gaitmap/pull/14) +- The `PerSampleZuptDetectorMixin` and `RegionZuptDetectorMixin` are now public API to simplify the implementation of + custom ZUPT detectors. + (https://github.com/mad-lab-fau/gaitmap/pull/14) + ### Changed - When using `memory` with any of Dtw methods, we will not cache the peak detection step anymore. diff --git a/docs/modules/zupt_detection.rst b/docs/modules/zupt_detection.rst index 9b11cf5c..fde85275 100644 --- a/docs/modules/zupt_detection.rst +++ b/docs/modules/zupt_detection.rst @@ -16,3 +16,7 @@ Classes NormZuptDetector AredZuptDetector ShoeZuptDetector + StrideEventZuptDetector + ComboZuptDetector + PerSampleZuptDetectorMixin + RegionZuptDetectorMixin