├── .gitattributes ├── LICENSE ├── README.md ├── example ├── Kinect64.props ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ └── _settings │ │ ├── kinect2dscene10.xml │ │ ├── kinect3dscene.xml │ │ ├── kinectcamera.xml │ │ └── triangulator10.xml └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleGestures ├── Kinect64.props ├── addons.make ├── bin │ ├── Kinect20.VisualGestureBuilder.dll │ ├── data │ │ └── gestures.gbd │ └── vgbtechs │ │ ├── AdaBoostTech.dll │ │ └── RFRProgressTech.dll └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleTcpReceiver ├── Kinect64.props ├── addons.make ├── bin │ └── data │ │ └── .gitkeep └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleTcpSender ├── Kinect64.props ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── _settings │ │ ├── kinect3dscene.xml │ │ ├── kinectcamera.xml │ │ └── tcp_sender.xml │ │ └── tcp.txt └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── exampleTriangulator ├── Kinect64.props ├── addons.make ├── bin │ └── data │ │ ├── .gitkeep │ │ ├── _settings │ │ ├── kinect2dscene10.xml │ │ ├── kinect3dscene.xml │ │ ├── kinectcamera.xml │ │ └── triangulator10.xml │ │ └── _shaders │ │ ├── fullpointcloud.frag │ │ └── fullpointcloud.vert └── src │ ├── main.cpp │ ├── ofApp.cpp │ └── ofApp.h ├── images ├── 1.jpg ├── 2.jpg ├── 3.jpg ├── 4.gif └── pm.jpg ├── libs ├── Kinect20.VisualGestureBuilder.dll ├── copy_these_files_in_bin_for_gesture_detection.txt └── vgbtechs │ ├── AdaBoostTech.dll │ └── RFRProgressTech.dll └── src ├── core ├── ncKinectCamera.cpp ├── ncKinectCamera.h ├── ncKinectEventDispatcher.cpp ├── ncKinectEventDispatcher.h ├── ncKinectUser.h ├── ncKinectUserManager.cpp ├── ncKinectUserManager.h ├── ncKinectv2Core.cpp └── ncKinectv2Core.h └── utils ├── ncKinect2dScene.cpp ├── ncKinect2dScene.h ├── ncKinect3dScene.cpp ├── ncKinect3dScene.h ├── ncKinectAreaManager.cpp ├── ncKinectAreaManager.h ├── ncKinectPCTriangulator.cpp ├── ncKinectPCTriangulator.h ├── ncKinectSeDeserializer.h ├── ncKinectv2GestureDetector.cpp ├── ncKinectv2GestureDetector.h ├── ofxInfiniteCanvas.cpp ├── ofxInfiniteCanvas.h ├── ofxMeshUtils.cpp ├── ofxMeshUtils.h ├── ofxTimer.cpp ├── ofxTimer.h ├── socketCS.cpp ├── socketCS.h ├── tcpClient ├── ncKinectSender.cpp └── ncKinectSender.h └── tcpServer ├── NCKinectV2Objects.h ├── ncKinectReceiver.cpp └── ncKinectReceiver.h /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/README.md -------------------------------------------------------------------------------- /example/Kinect64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/Kinect64.props -------------------------------------------------------------------------------- /example/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/addons.make -------------------------------------------------------------------------------- /example/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /example/bin/data/_settings/kinect2dscene10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/bin/data/_settings/kinect2dscene10.xml -------------------------------------------------------------------------------- /example/bin/data/_settings/kinect3dscene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/bin/data/_settings/kinect3dscene.xml -------------------------------------------------------------------------------- /example/bin/data/_settings/kinectcamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/bin/data/_settings/kinectcamera.xml -------------------------------------------------------------------------------- /example/bin/data/_settings/triangulator10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/bin/data/_settings/triangulator10.xml -------------------------------------------------------------------------------- /example/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/src/main.cpp -------------------------------------------------------------------------------- /example/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/src/ofApp.cpp -------------------------------------------------------------------------------- /example/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/example/src/ofApp.h -------------------------------------------------------------------------------- /exampleGestures/Kinect64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/Kinect64.props -------------------------------------------------------------------------------- /exampleGestures/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/addons.make -------------------------------------------------------------------------------- /exampleGestures/bin/Kinect20.VisualGestureBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/bin/Kinect20.VisualGestureBuilder.dll -------------------------------------------------------------------------------- /exampleGestures/bin/data/gestures.gbd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/bin/data/gestures.gbd -------------------------------------------------------------------------------- /exampleGestures/bin/vgbtechs/AdaBoostTech.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/bin/vgbtechs/AdaBoostTech.dll -------------------------------------------------------------------------------- /exampleGestures/bin/vgbtechs/RFRProgressTech.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/bin/vgbtechs/RFRProgressTech.dll -------------------------------------------------------------------------------- /exampleGestures/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/src/main.cpp -------------------------------------------------------------------------------- /exampleGestures/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleGestures/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleGestures/src/ofApp.h -------------------------------------------------------------------------------- /exampleTcpReceiver/Kinect64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpReceiver/Kinect64.props -------------------------------------------------------------------------------- /exampleTcpReceiver/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpReceiver/addons.make -------------------------------------------------------------------------------- /exampleTcpReceiver/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleTcpReceiver/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpReceiver/src/main.cpp -------------------------------------------------------------------------------- /exampleTcpReceiver/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpReceiver/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleTcpReceiver/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpReceiver/src/ofApp.h -------------------------------------------------------------------------------- /exampleTcpSender/Kinect64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/Kinect64.props -------------------------------------------------------------------------------- /exampleTcpSender/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/addons.make -------------------------------------------------------------------------------- /exampleTcpSender/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleTcpSender/bin/data/_settings/kinect3dscene.xml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /exampleTcpSender/bin/data/_settings/kinectcamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/bin/data/_settings/kinectcamera.xml -------------------------------------------------------------------------------- /exampleTcpSender/bin/data/_settings/tcp_sender.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/bin/data/_settings/tcp_sender.xml -------------------------------------------------------------------------------- /exampleTcpSender/bin/data/tcp.txt: -------------------------------------------------------------------------------- 1 | 127.0.0.1 2 | 11999 -------------------------------------------------------------------------------- /exampleTcpSender/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/src/main.cpp -------------------------------------------------------------------------------- /exampleTcpSender/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleTcpSender/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTcpSender/src/ofApp.h -------------------------------------------------------------------------------- /exampleTriangulator/Kinect64.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/Kinect64.props -------------------------------------------------------------------------------- /exampleTriangulator/addons.make: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/addons.make -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/_settings/kinect2dscene10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/bin/data/_settings/kinect2dscene10.xml -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/_settings/kinect3dscene.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/bin/data/_settings/kinect3dscene.xml -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/_settings/kinectcamera.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/bin/data/_settings/kinectcamera.xml -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/_settings/triangulator10.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/bin/data/_settings/triangulator10.xml -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/_shaders/fullpointcloud.frag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/bin/data/_shaders/fullpointcloud.frag -------------------------------------------------------------------------------- /exampleTriangulator/bin/data/_shaders/fullpointcloud.vert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/bin/data/_shaders/fullpointcloud.vert -------------------------------------------------------------------------------- /exampleTriangulator/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/src/main.cpp -------------------------------------------------------------------------------- /exampleTriangulator/src/ofApp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/src/ofApp.cpp -------------------------------------------------------------------------------- /exampleTriangulator/src/ofApp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/exampleTriangulator/src/ofApp.h -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/images/3.jpg -------------------------------------------------------------------------------- /images/4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/images/4.gif -------------------------------------------------------------------------------- /images/pm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/images/pm.jpg -------------------------------------------------------------------------------- /libs/Kinect20.VisualGestureBuilder.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/libs/Kinect20.VisualGestureBuilder.dll -------------------------------------------------------------------------------- /libs/copy_these_files_in_bin_for_gesture_detection.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /libs/vgbtechs/AdaBoostTech.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/libs/vgbtechs/AdaBoostTech.dll -------------------------------------------------------------------------------- /libs/vgbtechs/RFRProgressTech.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/libs/vgbtechs/RFRProgressTech.dll -------------------------------------------------------------------------------- /src/core/ncKinectCamera.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectCamera.cpp -------------------------------------------------------------------------------- /src/core/ncKinectCamera.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectCamera.h -------------------------------------------------------------------------------- /src/core/ncKinectEventDispatcher.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectEventDispatcher.cpp -------------------------------------------------------------------------------- /src/core/ncKinectEventDispatcher.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectEventDispatcher.h -------------------------------------------------------------------------------- /src/core/ncKinectUser.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectUser.h -------------------------------------------------------------------------------- /src/core/ncKinectUserManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectUserManager.cpp -------------------------------------------------------------------------------- /src/core/ncKinectUserManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectUserManager.h -------------------------------------------------------------------------------- /src/core/ncKinectv2Core.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectv2Core.cpp -------------------------------------------------------------------------------- /src/core/ncKinectv2Core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/core/ncKinectv2Core.h -------------------------------------------------------------------------------- /src/utils/ncKinect2dScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinect2dScene.cpp -------------------------------------------------------------------------------- /src/utils/ncKinect2dScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinect2dScene.h -------------------------------------------------------------------------------- /src/utils/ncKinect3dScene.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinect3dScene.cpp -------------------------------------------------------------------------------- /src/utils/ncKinect3dScene.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinect3dScene.h -------------------------------------------------------------------------------- /src/utils/ncKinectAreaManager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectAreaManager.cpp -------------------------------------------------------------------------------- /src/utils/ncKinectAreaManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectAreaManager.h -------------------------------------------------------------------------------- /src/utils/ncKinectPCTriangulator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectPCTriangulator.cpp -------------------------------------------------------------------------------- /src/utils/ncKinectPCTriangulator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectPCTriangulator.h -------------------------------------------------------------------------------- /src/utils/ncKinectSeDeserializer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectSeDeserializer.h -------------------------------------------------------------------------------- /src/utils/ncKinectv2GestureDetector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectv2GestureDetector.cpp -------------------------------------------------------------------------------- /src/utils/ncKinectv2GestureDetector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ncKinectv2GestureDetector.h -------------------------------------------------------------------------------- /src/utils/ofxInfiniteCanvas.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ofxInfiniteCanvas.cpp -------------------------------------------------------------------------------- /src/utils/ofxInfiniteCanvas.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ofxInfiniteCanvas.h -------------------------------------------------------------------------------- /src/utils/ofxMeshUtils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ofxMeshUtils.cpp -------------------------------------------------------------------------------- /src/utils/ofxMeshUtils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ofxMeshUtils.h -------------------------------------------------------------------------------- /src/utils/ofxTimer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ofxTimer.cpp -------------------------------------------------------------------------------- /src/utils/ofxTimer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/ofxTimer.h -------------------------------------------------------------------------------- /src/utils/socketCS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/socketCS.cpp -------------------------------------------------------------------------------- /src/utils/socketCS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/socketCS.h -------------------------------------------------------------------------------- /src/utils/tcpClient/ncKinectSender.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/tcpClient/ncKinectSender.cpp -------------------------------------------------------------------------------- /src/utils/tcpClient/ncKinectSender.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/tcpClient/ncKinectSender.h -------------------------------------------------------------------------------- /src/utils/tcpServer/NCKinectV2Objects.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/tcpServer/NCKinectV2Objects.h -------------------------------------------------------------------------------- /src/utils/tcpServer/ncKinectReceiver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/tcpServer/ncKinectReceiver.cpp -------------------------------------------------------------------------------- /src/utils/tcpServer/ncKinectReceiver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wearenocomputer/ofxNCKinect/HEAD/src/utils/tcpServer/ncKinectReceiver.h --------------------------------------------------------------------------------