├── .gitignore ├── Button.cpp ├── Button.h ├── CMakeLists.txt ├── CudaComputeTargetFlags.cmake ├── Dashboard.cpp ├── Dashboard.h ├── DepthBasics.cpp ├── DepthBasics.h ├── Gesture.cpp ├── Gesture.h ├── KinectJointFilter.cpp ├── KinectJointFilter.h ├── LICENSE ├── MVector.cpp ├── MVector.h ├── README.md ├── UDPserver.cpp ├── UDPserver.h ├── User.cpp ├── User.h ├── Workstation.cpp ├── Workstation.h ├── calibration ├── camera_param.yaml ├── depth_calibration.yaml ├── pose_calibration.yaml └── rgb_calibration.yaml ├── libfreenect2_grabber.cpp ├── libfreenect2_grabber.h ├── main.cpp ├── registration.cpp ├── registration.h ├── registrationCuda.cu ├── registrationCuda.h ├── resource.h └── stdafx.h /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/.gitignore -------------------------------------------------------------------------------- /Button.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Button.cpp -------------------------------------------------------------------------------- /Button.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Button.h -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /CudaComputeTargetFlags.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/CudaComputeTargetFlags.cmake -------------------------------------------------------------------------------- /Dashboard.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Dashboard.cpp -------------------------------------------------------------------------------- /Dashboard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Dashboard.h -------------------------------------------------------------------------------- /DepthBasics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/DepthBasics.cpp -------------------------------------------------------------------------------- /DepthBasics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/DepthBasics.h -------------------------------------------------------------------------------- /Gesture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Gesture.cpp -------------------------------------------------------------------------------- /Gesture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Gesture.h -------------------------------------------------------------------------------- /KinectJointFilter.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/KinectJointFilter.cpp -------------------------------------------------------------------------------- /KinectJointFilter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/KinectJointFilter.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/LICENSE -------------------------------------------------------------------------------- /MVector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/MVector.cpp -------------------------------------------------------------------------------- /MVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/MVector.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/README.md -------------------------------------------------------------------------------- /UDPserver.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/UDPserver.cpp -------------------------------------------------------------------------------- /UDPserver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/UDPserver.h -------------------------------------------------------------------------------- /User.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/User.cpp -------------------------------------------------------------------------------- /User.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/User.h -------------------------------------------------------------------------------- /Workstation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Workstation.cpp -------------------------------------------------------------------------------- /Workstation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/Workstation.h -------------------------------------------------------------------------------- /calibration/camera_param.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/calibration/camera_param.yaml -------------------------------------------------------------------------------- /calibration/depth_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/calibration/depth_calibration.yaml -------------------------------------------------------------------------------- /calibration/pose_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/calibration/pose_calibration.yaml -------------------------------------------------------------------------------- /calibration/rgb_calibration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/calibration/rgb_calibration.yaml -------------------------------------------------------------------------------- /libfreenect2_grabber.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/libfreenect2_grabber.cpp -------------------------------------------------------------------------------- /libfreenect2_grabber.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/libfreenect2_grabber.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/main.cpp -------------------------------------------------------------------------------- /registration.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/registration.cpp -------------------------------------------------------------------------------- /registration.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/registration.h -------------------------------------------------------------------------------- /registrationCuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/registrationCuda.cu -------------------------------------------------------------------------------- /registrationCuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/registrationCuda.h -------------------------------------------------------------------------------- /resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/resource.h -------------------------------------------------------------------------------- /stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/shanilfernando/VRInteraction/HEAD/stdafx.h --------------------------------------------------------------------------------