From c88bd5e4391f9824254cb52c2e85f846b7232af8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20K=C3=BCderle?= Date: Wed, 8 Feb 2023 15:24:43 +0100 Subject: [PATCH] Updated Changelog and added to docs --- CHANGELOG.md | 12 ++++++++++++ docs/modules/zupt_detection.rst | 4 ++++ 2 files changed, 16 insertions(+) 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