File tree Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Expand file tree Collapse file tree 2 files changed +5
-10
lines changed Original file line number Diff line number Diff line change @@ -51,10 +51,6 @@ Gaitalytics
51
51
:alt: GitHub License
52
52
53
53
54
-
55
-
56
-
57
-
58
54
.. end-badges
59
55
60
56
This Python package provides a comprehensive set of tools and advanced algorithms for analyzing 3D motion capture data.
@@ -77,23 +73,22 @@ Fast install with anaconda:
77
73
conda install gaitalytics -c DartLab-LLUI
78
74
..
79
75
76
+ .. warning ::
77
+ | To avoid dependencies issues, make sure conda-forge is the first channel in your conda configuration.
78
+
80
79
Or with pip:
81
80
82
81
.. code :: shell
83
82
84
83
pip install gaitalytics
85
84
..
86
85
87
- ..
88
-
89
- .. warning ::
90
- | Manual installation of the `pyomeca <https://pyomeca.github.io/>`_ package is required. when using the pip installation method.
91
86
92
87
Configuration
93
88
^^^^^^^^^^^^^
94
89
95
90
Gaitalytics can be used with any marker set, which at least includes
96
- three or for hip markers (front left/right, back left/right or sacrum) and four foot
91
+ three or four hip markers (front left/right, back left/right or sacrum) and four foot
97
92
markers (left heel/toe, right heel/toe).
98
93
99
94
Additionally markers can be defined on which standard time-series features such as min max mean etc.
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ Following snipped illustrates the usage of the detection function:
20
20
21
21
config = api.load_config("./config.yaml")
22
22
trial = api.load_c3d_trial("./example.c3d", config)
23
- events = api.detect_events(trial)
23
+ events = api.detect_events(trial, config )
24
24
25
25
..
26
26
You can’t perform that action at this time.
0 commit comments