├── .github └── workflows │ ├── greetings.yml │ ├── python-package.yml │ └── test_and_deploy.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── DEMO.ipynb ├── DEMO_c3d.ipynb ├── LICENSE ├── README.md ├── docs ├── .gitignore ├── CLAC.txt ├── CLAI.txt ├── CONTRIBUTING.md ├── Makefile ├── conf.py └── scripts │ ├── autodoc.sh │ └── module.sh ├── examples ├── config.yaml ├── reachingDEMO_2D.h5 ├── reachingDEMO_3D.h5 └── runway03.c3d ├── pyproject.toml ├── reinstall.sh ├── setup.cfg ├── setup.py ├── src └── dlc2kinematics │ ├── __init__.py │ ├── _tests │ ├── _init_.py │ └── test_reader.py │ ├── joint_analysis.py │ ├── mainfxns.py │ ├── plotting.py │ ├── preprocess.py │ ├── preprocess_c3d.py │ ├── quaternions.py │ ├── utils │ ├── __init__.py │ └── auxiliaryfunctions.py │ ├── version.py │ └── visualization.py └── tox.ini /.github/workflows/greetings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/.github/workflows/greetings.yml -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.github/workflows/test_and_deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/.github/workflows/test_and_deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /DEMO.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/DEMO.ipynb -------------------------------------------------------------------------------- /DEMO_c3d.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/DEMO_c3d.ipynb -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/README.md -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | _*/ 2 | index.rst 3 | -------------------------------------------------------------------------------- /docs/CLAC.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/CLAC.txt -------------------------------------------------------------------------------- /docs/CLAI.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/CLAI.txt -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/scripts/autodoc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/scripts/autodoc.sh -------------------------------------------------------------------------------- /docs/scripts/module.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/docs/scripts/module.sh -------------------------------------------------------------------------------- /examples/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/examples/config.yaml -------------------------------------------------------------------------------- /examples/reachingDEMO_2D.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/examples/reachingDEMO_2D.h5 -------------------------------------------------------------------------------- /examples/reachingDEMO_3D.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/examples/reachingDEMO_3D.h5 -------------------------------------------------------------------------------- /examples/runway03.c3d: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/examples/runway03.c3d -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/pyproject.toml -------------------------------------------------------------------------------- /reinstall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/reinstall.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/setup.py -------------------------------------------------------------------------------- /src/dlc2kinematics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/__init__.py -------------------------------------------------------------------------------- /src/dlc2kinematics/_tests/_init_.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/dlc2kinematics/_tests/test_reader.py: -------------------------------------------------------------------------------- 1 | def test_something(): 2 | pass 3 | -------------------------------------------------------------------------------- /src/dlc2kinematics/joint_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/joint_analysis.py -------------------------------------------------------------------------------- /src/dlc2kinematics/mainfxns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/mainfxns.py -------------------------------------------------------------------------------- /src/dlc2kinematics/plotting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/plotting.py -------------------------------------------------------------------------------- /src/dlc2kinematics/preprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/preprocess.py -------------------------------------------------------------------------------- /src/dlc2kinematics/preprocess_c3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/preprocess_c3d.py -------------------------------------------------------------------------------- /src/dlc2kinematics/quaternions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/quaternions.py -------------------------------------------------------------------------------- /src/dlc2kinematics/utils/__init__.py: -------------------------------------------------------------------------------- 1 | from dlc2kinematics.utils.auxiliaryfunctions import * 2 | -------------------------------------------------------------------------------- /src/dlc2kinematics/utils/auxiliaryfunctions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/utils/auxiliaryfunctions.py -------------------------------------------------------------------------------- /src/dlc2kinematics/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/version.py -------------------------------------------------------------------------------- /src/dlc2kinematics/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/src/dlc2kinematics/visualization.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AdaptiveMotorControlLab/DLC2Kinematics/HEAD/tox.ini --------------------------------------------------------------------------------