├── .gitignore ├── LICENSE ├── README.md ├── ktb ├── __init__.py ├── constants.py ├── kinect.py └── utils.py ├── requirements.txt ├── setup.py └── test.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/README.md -------------------------------------------------------------------------------- /ktb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/ktb/__init__.py -------------------------------------------------------------------------------- /ktb/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/ktb/constants.py -------------------------------------------------------------------------------- /ktb/kinect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/ktb/kinect.py -------------------------------------------------------------------------------- /ktb/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/ktb/utils.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | numpy 2 | pylibfreenect2==0.1.3 3 | opencv-python>=4.2.0.0 -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/setup.py -------------------------------------------------------------------------------- /test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nikwl/kinect-toolbox/HEAD/test.py --------------------------------------------------------------------------------