gitextract_6bj2llpn/ ├── .gitignore ├── README.md ├── addon_config.mk ├── example/ │ ├── addons.make │ ├── example.sln │ ├── example.vcxproj │ ├── example.vcxproj.filters │ ├── icon.rc │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleBodyIndexColor/ │ ├── addons.make │ ├── exampleBodyIndexColor.sln │ ├── exampleBodyIndexColor.vcxproj │ ├── exampleBodyIndexColor.vcxproj.filters │ ├── icon.rc │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleBodyIndexShader/ │ ├── addons.make │ ├── example-bodyIndex.sln │ ├── example-bodyIndex.vcxproj │ ├── example-bodyIndex.vcxproj.filters │ ├── icon.rc │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleDepthMeshShader/ │ ├── README.md │ ├── addons.make │ ├── exampleDepthMeshShader.sln │ ├── exampleDepthMeshShader.vcxproj │ ├── exampleDepthMeshShader.vcxproj.filters │ ├── icon.rc │ └── src/ │ ├── MeshUtils.h │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleDepthToCameraTable/ │ ├── addons.make │ ├── exampleDepthToCameraTable.sln │ ├── exampleDepthToCameraTable.vcxproj │ ├── exampleDepthToCameraTable.vcxproj.filters │ ├── icon.rc │ └── src/ │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleWithGui/ │ ├── addons.make │ ├── example.sln │ ├── example.vcxproj │ ├── example.vcxproj.filters │ ├── icon.rc │ ├── src/ │ │ ├── main.cpp │ │ ├── ofApp.cpp │ │ └── ofApp.h │ └── ~AutoRecover.example.vcxproj ├── ofxKinectForWindows2.props ├── ofxKinectForWindows2Lib/ │ ├── ofxKinectForWindows2Lib.vcxproj │ └── ofxKinectForWindows2Lib.vcxproj.filters └── src/ ├── ofxKinectForWindows2/ │ ├── Data/ │ │ ├── Body.cpp │ │ ├── Body.h │ │ ├── Joint.cpp │ │ └── Joint.h │ ├── Device.cpp │ ├── Device.h │ ├── Source/ │ │ ├── Base.h │ │ ├── BaseImage.cpp │ │ ├── BaseImage.h │ │ ├── Body.cpp │ │ ├── Body.h │ │ ├── BodyIndex.cpp │ │ ├── BodyIndex.h │ │ ├── Color.cpp │ │ ├── Color.h │ │ ├── Depth.cpp │ │ ├── Depth.h │ │ ├── Infrared.cpp │ │ ├── Infrared.h │ │ ├── LongExposureInfraRed.cpp │ │ └── LongExposureInfrared.h │ ├── Utils.cpp │ └── Utils.h └── ofxKinectForWindows2.h