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: README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -11,13 +11,15 @@ Welcome to the NeuroGeriatricMotionToolbox (NGMT). We are a Python based toolbox
11
11
12
12
> The toolbox is currently under development and is not yet ready for use.
13
13
14
-
The toolbox is aimed at a wide variety of motion researchers who want to use open souce software to process their data.
15
-
We have implemented a wide variety of functions to process motion data, such as:
14
+
The toolbox is aimed at motion researchers who want to use python based open source software to process their data.
15
+
We have implemented validated algorithms in modules to process motion data, such as:
16
16
- Gait sequence detection (GSD)
17
17
- Inital contact detection (ICD)
18
+
- Physical activity monitoring (PAM)
19
+
- Postrual transition detection (STSD)
18
20
- More to follow ...
19
21
20
-
The idea is that various motion data can be loaded into our dedicated dataclasses which rely on principles from the [Motion-BIDS](https://bids-specification.readthedocs.io/en/latest/modality-specific-files/motion.html) standard.
22
+
The idea is that various motion data can be loaded into our dedicated dataclass which rely on principles from the [Motion-BIDS](https://bids-specification.readthedocs.io/en/latest/modality-specific-files/motion.html) standard.
21
23
22
24
## Data classes
23
25
### Data classes: conceptual framework
@@ -29,7 +31,7 @@ Motion data is recorded with many different systems and modalities, each with th
29
31
30
32
In NGMT, data from a single tracking system is therefore loaded into a single `pandas.DataFrame`. The column headers of this `pandas.DataFrame` refer to the channels, and the corresponding [channels information](https://bids-specification.readthedocs.io/en/stable/modality-specific-files/motion.html#channels-description-_channelstsv) is likewise available as a `pandas.DataFrame`.
31
33
32
-
Similarly, if any [events](https://bids-specification.readthedocs.io/en/stable/modality-specific-files/task-events.html) are available for the given recording, these are loaded into a single `pandas.DataFrame` for each tracking system as well.
34
+
Similarly, if any [events](https://bids-specification.readthedocs.io/en/stable/modality-specific-files/task-events.html) are available for the given recording, these are loaded into a single `pandas.DataFrame` for each tracking system as well. The events derived from the toolbox can be exported to a BIDS like '*_events.tsv' file.
33
35
34
36
### Data classes: in practice
35
37
These concepts are translated into a NGMT dataclass for each recording: `NGMTRecording`:
0 commit comments