-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Documentation Improvement #110
Open
masoudabedinifar
wants to merge
14
commits into
main
Choose a base branch
from
documentation-dev
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
9edc515
overview table
masoudabedinifar bd29ece
Unit consistency and minor changes in tables
masoudabedinifar ea9db4c
Merge branch 'main' of https://github.com/neurogeriatricskiel/KielMAT…
masoudabedinifar 9d36a7d
documentation improvement
masoudabedinifar 264b83f
examples
masoudabedinifar c366fd8
table improvement
masoudabedinifar 218949f
revisions based on reviews from merge request (J.W.)
masoudabedinifar 73bad3e
remove the progress bar from the documentation
masoudabedinifar 5514104
render properly
masoudabedinifar e6a4ab1
hange the docstring of this function
masoudabedinifar dbf50f3
consistency in headers
masoudabedinifar 7026ba2
docstrings rendering correctly
masoudabedinifar 3a21b36
reordering of example
masoudabedinifar 0185add
all functions in the mermaid overview
masoudabedinifar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
# Overview | ||
|
||
This part of the project documentation focuses on | ||
the avaliable **datasets**. | ||
This section of the project documentation focuses on the available **datasets** used within the KielMAT toolbox. These datasets are essential for testing and validating the functionality of the toolbox’s modules. Below is an introduction to the available datasets, with links to further details and data access. | ||
|
||
|
||
## [Keep Control](keepcontrol.md) | ||
|
||
The **Keep Control** dataset is derived from the [Keep Control](https://www.keep-control.eu/) project, which is part of an Industrial Academic Initial Training Network. This dataset includes full-body mobility data collected from both healthy and neurological cohorts, and is primarily used to validate inertial measurement unit (IMU) algorithms. | ||
|
||
## [Mobilise-D](mobilised.md) | ||
|
||
The **Mobilise-D** dataset is derived from the [Mobilise-D](https://mobilise-d.eu/) consortium, a European project aimed at developing a comprehensive system for monitoring and evaluating people's gait using digital technologies. The dataset includes data collected using sensors worn on the body, such as a low back-worn inertial measurement unit (IMU). The dataset provides valuable insights into real-world gait analysis using wearable sensors and has been used to validate gait measurement methodologies. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,35 @@ | ||
# Overview | ||
|
||
This is a collection of examples to explain various parts of the KielMAT toolbox. | ||
This section contains a series of examples designed to demonstrate key features and functionalities within the KielMAT toolbox. These examples will guide users through common workflows and illustrate how to apply different modules to motion analysis data. | ||
|
||
## Construct Your DataClass | ||
|
||
### [Example 1: Load data into KielMAT](basic_00_load_Data_into_KielMAT.md) | ||
### [Example 2: Load datasets](basic_01_load_dataset.md) | ||
### [Example 3: Events in dataclass](basic_02_events.md) | ||
The `DataClass` is the central data structure in KielMAT, which stores and organizes motion data along with associated events. The following examples guide you through the process of loading and structuring your data. | ||
|
||
### [Example 1: Load data into KielMAT](basic_01_load_Data_into_KielMAT.md) | ||
In this example, you will learn how to load motion data into `KielMAT`'s `DataClass`. This step is essential for processing any motion capture data, whether it's from IMUs, C3D files, or other data formats. | ||
|
||
### [Example 2: Load datasets](basic_02_load_dataset.md) | ||
This example demonstrates how to load datasets into `KielMAT`. You will learn how to import data from different sources, handle multiple datasets, and integrate them into a unified structure for analysis. | ||
|
||
### [Example 3: Events in DataClass](basic_03_events.md) | ||
The `DataClass` not only stores motion data but also provides functionality to mark and organize events (such as gait sequences, initial contacts, or other notable movement occurrences). This example shows how to tag specific events within the `DataClass`, allowing you to analyze them in the context of the motion data. | ||
|
||
## Run Modules | ||
|
||
### [Example 1: Gait Sequence Detection](modules_01_gsd.md) | ||
### [Example 2: Initial Contact Detection](modules_02_icd.md) | ||
### [Example 3: Physical Activity Monitoring](modules_03_pam.md) | ||
KielMAT includes several pre-built modules to analyze motion data for different tasks. The following examples demonstrate how to apply each module to extract meaningful information from your data. | ||
|
||
### [Example 4: Gait Sequence Detection](modules_04_gsd.md) | ||
This example introduces the [Gait Sequence Detection](https://neurogeriatricskiel.github.io/KielMAT/modules/gsd/) module. This module identifies gait sequences using 3D accelerometer data from a lower back sensor. | ||
|
||
### [Example 5: Initial Contact Detection](modules_05_icd.md) | ||
This example introduces the [Initial Contact Detection](https://neurogeriatricskiel.github.io/KielMAT/modules/icd/) module. It identifies and characterizes initial contacts within each detected gait sequence using the gait sequence detection module. | ||
|
||
### [Example 6: Physical Activity Monitoring](modules_06_pam.md) | ||
This example introduces the [Physical Activity Monitoring](https://neurogeriatricskiel.github.io/KielMAT/modules/pam/) module. The example shows how the module is implemented on sample 3D acceleration data from an IMU sensor to monitor physical activity levels. | ||
|
||
### [Example 7: Postural Transition Detection](modules_07_ptd.md) | ||
This example introduces the [Postural Transition Detection](https://neurogeriatricskiel.github.io/KielMAT/modules/ptd/) module. It demonstrates how the module is implemented on sample 3D acceleration and 3D angular velocity data from a lower back IMU sensor to detect postural transitions, such as sit-to-stand or stand-to-sit. | ||
|
||
### [Example 8: Turn Detection](modules_08_td.md) | ||
This example introduces the [Turn Detection](https://neurogeriatricskiel.github.io/KielMAT/modules/td/) module. It demonstrates how the module is implemented on sample 3D acceleration and 3D angular velocity data from a lower back IMU sensor to detect turns. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes
File renamed without changes
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The mermaid dataclass diagram has not changed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Handled here: 0185add