├── .gitignore ├── 3rd Party ├── EigenWrapper │ ├── x64 │ │ ├── Debug │ │ │ ├── EigenWrapper.dll │ │ │ └── NativeEigenWrapper.dll │ │ └── Release │ │ │ ├── EigenWrapper.dll │ │ │ └── NativeEigenWrapper.dll │ └── x86 │ │ ├── Debug │ │ ├── EigenWrapper.dll │ │ └── NativeEigenWrapper.dll │ │ └── Release │ │ ├── EigenWrapper.dll │ │ └── NativeEigenWrapper.dll └── VrpnNet │ ├── x64 │ ├── Debug │ │ └── VrpnNet.dll │ └── Release │ │ └── VrpnNet.dll │ └── x86 │ ├── Debug │ └── VrpnNet.dll │ └── Release │ └── VrpnNet.dll ├── Docs └── Joint+Mapping.xlsx ├── KinectBase ├── Enums.cs ├── HelperMethods.cs ├── IKinectCore.cs ├── IKinectSettings.cs ├── IKinectSettingsControl.cs ├── IKinectSkeletonControl.cs ├── KalmanFilter.cs ├── KinectBase.csproj ├── Properties │ └── AssemblyInfo.cs └── Settings.cs ├── KinectV1Core ├── AdvancedColorWindow.xaml ├── AdvancedColorWindow.xaml.cs ├── KinectV1Core.cs ├── KinectV1Core.csproj ├── KinectV1Settings.cs ├── KinectV1SettingsControl.xaml ├── KinectV1SettingsControl.xaml.cs ├── KinectV1SkeletonControl.xaml ├── KinectV1SkeletonControl.xaml.cs ├── KinectV1StatusHelper.cs └── Properties │ └── AssemblyInfo.cs ├── KinectV2Core ├── KinectV2Core.cs ├── KinectV2Core.csproj ├── KinectV2Settings.cs ├── KinectV2SettingsControl.xaml ├── KinectV2SettingsControl.xaml.cs ├── KinectV2SkeletonControl.xaml ├── KinectV2SkeletonControl.xaml.cs ├── KinectV2StatusHelper.cs └── Properties │ └── AssemblyInfo.cs ├── KinectWithVRServer.sln ├── KinectWithVRServer ├── App.xaml ├── App.xaml.cs ├── ConcurrentSkeletonCollection.cs ├── ConsoleUI.cs ├── FeedbackCore.cs ├── GestureRecognition │ ├── DiscreteHMM.cs │ ├── GestureCore.cs │ ├── GestureSettingsUserControl.xaml │ ├── GestureSettingsUserControl.xaml.cs │ └── KMeans.cs ├── HelperMethods.cs ├── Joint Mapping.xlsx ├── KinectV1Wrapper │ ├── KV1Core.cs │ ├── KV1SdkTest.cs │ ├── KV1Settings.cs │ ├── KV1SettingsControl.xaml │ ├── KV1SettingsControl.xaml.cs │ └── KV1StatusHelper.cs ├── KinectV2Wrapper │ ├── KV2Core.cs │ ├── KV2SdkTest.cs │ ├── KV2Settings.cs │ ├── KV2SettingsControl.xaml │ ├── KV2SettingsControl.xaml.cs │ └── KV2StatusHelper.cs ├── KinectWithVRServer.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── NativeInterop.cs ├── NetworkKinectWrapper │ ├── NKAddDialog.xaml │ ├── NKAddDialog.xaml.cs │ ├── NKCore.cs │ ├── NKSettings.cs │ ├── NKSettingsControl.xaml │ └── NKSettingsControl.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ServerCore.cs ├── Shaders │ ├── ColorDepthEffect │ │ ├── ColorDepthEffect.fx │ │ ├── ColorDepthEffect.ps │ │ └── ColorDepthEffectWrapper.cs │ ├── ColorScaleEffect │ │ ├── ColorScaleEffect.fx │ │ ├── ColorScaleEffect.ps │ │ └── ColorScaleEffectWrapper.cs │ ├── DepthScalingEffect │ │ ├── DepthScalingEffect.fx │ │ ├── DepthScalingEffect.ps │ │ └── DepthScalingEffectWrapper.cs │ └── NoScalingEffect │ │ ├── NoScalingEffect.fx │ │ ├── NoScalingEffect.ps │ │ └── NoScalingEffectWrapper.cs ├── SkeletonMerger.cs ├── VerifyDLLs.cs ├── VoiceRecogCore.cs └── app.config ├── NetworkKinectCore ├── NetworkKinectCore.cs ├── NetworkKinectCore.csproj ├── NetworkKinectSettings.cs ├── NetworkKinectSettingsControl.xaml ├── NetworkKinectSettingsControl.xaml.cs └── Properties │ └── AssemblyInfo.cs └── Readme.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/.gitignore -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x64/Debug/EigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x64/Debug/EigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x64/Debug/NativeEigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x64/Debug/NativeEigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x64/Release/EigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x64/Release/EigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x64/Release/NativeEigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x64/Release/NativeEigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x86/Debug/EigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x86/Debug/EigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x86/Debug/NativeEigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x86/Debug/NativeEigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x86/Release/EigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x86/Release/EigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/EigenWrapper/x86/Release/NativeEigenWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/EigenWrapper/x86/Release/NativeEigenWrapper.dll -------------------------------------------------------------------------------- /3rd Party/VrpnNet/x64/Debug/VrpnNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/VrpnNet/x64/Debug/VrpnNet.dll -------------------------------------------------------------------------------- /3rd Party/VrpnNet/x64/Release/VrpnNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/VrpnNet/x64/Release/VrpnNet.dll -------------------------------------------------------------------------------- /3rd Party/VrpnNet/x86/Debug/VrpnNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/VrpnNet/x86/Debug/VrpnNet.dll -------------------------------------------------------------------------------- /3rd Party/VrpnNet/x86/Release/VrpnNet.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/3rd Party/VrpnNet/x86/Release/VrpnNet.dll -------------------------------------------------------------------------------- /Docs/Joint+Mapping.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/Docs/Joint+Mapping.xlsx -------------------------------------------------------------------------------- /KinectBase/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/Enums.cs -------------------------------------------------------------------------------- /KinectBase/HelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/HelperMethods.cs -------------------------------------------------------------------------------- /KinectBase/IKinectCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/IKinectCore.cs -------------------------------------------------------------------------------- /KinectBase/IKinectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/IKinectSettings.cs -------------------------------------------------------------------------------- /KinectBase/IKinectSettingsControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/IKinectSettingsControl.cs -------------------------------------------------------------------------------- /KinectBase/IKinectSkeletonControl.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/IKinectSkeletonControl.cs -------------------------------------------------------------------------------- /KinectBase/KalmanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/KalmanFilter.cs -------------------------------------------------------------------------------- /KinectBase/KinectBase.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/KinectBase.csproj -------------------------------------------------------------------------------- /KinectBase/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinectBase/Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectBase/Settings.cs -------------------------------------------------------------------------------- /KinectV1Core/AdvancedColorWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/AdvancedColorWindow.xaml -------------------------------------------------------------------------------- /KinectV1Core/AdvancedColorWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/AdvancedColorWindow.xaml.cs -------------------------------------------------------------------------------- /KinectV1Core/KinectV1Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1Core.cs -------------------------------------------------------------------------------- /KinectV1Core/KinectV1Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1Core.csproj -------------------------------------------------------------------------------- /KinectV1Core/KinectV1Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1Settings.cs -------------------------------------------------------------------------------- /KinectV1Core/KinectV1SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1SettingsControl.xaml -------------------------------------------------------------------------------- /KinectV1Core/KinectV1SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1SettingsControl.xaml.cs -------------------------------------------------------------------------------- /KinectV1Core/KinectV1SkeletonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1SkeletonControl.xaml -------------------------------------------------------------------------------- /KinectV1Core/KinectV1SkeletonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1SkeletonControl.xaml.cs -------------------------------------------------------------------------------- /KinectV1Core/KinectV1StatusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/KinectV1StatusHelper.cs -------------------------------------------------------------------------------- /KinectV1Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV1Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinectV2Core/KinectV2Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2Core.cs -------------------------------------------------------------------------------- /KinectV2Core/KinectV2Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2Core.csproj -------------------------------------------------------------------------------- /KinectV2Core/KinectV2Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2Settings.cs -------------------------------------------------------------------------------- /KinectV2Core/KinectV2SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2SettingsControl.xaml -------------------------------------------------------------------------------- /KinectV2Core/KinectV2SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2SettingsControl.xaml.cs -------------------------------------------------------------------------------- /KinectV2Core/KinectV2SkeletonControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2SkeletonControl.xaml -------------------------------------------------------------------------------- /KinectV2Core/KinectV2SkeletonControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2SkeletonControl.xaml.cs -------------------------------------------------------------------------------- /KinectV2Core/KinectV2StatusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/KinectV2StatusHelper.cs -------------------------------------------------------------------------------- /KinectV2Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectV2Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinectWithVRServer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer.sln -------------------------------------------------------------------------------- /KinectWithVRServer/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/App.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/App.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/ConcurrentSkeletonCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/ConcurrentSkeletonCollection.cs -------------------------------------------------------------------------------- /KinectWithVRServer/ConsoleUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/ConsoleUI.cs -------------------------------------------------------------------------------- /KinectWithVRServer/FeedbackCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/FeedbackCore.cs -------------------------------------------------------------------------------- /KinectWithVRServer/GestureRecognition/DiscreteHMM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/GestureRecognition/DiscreteHMM.cs -------------------------------------------------------------------------------- /KinectWithVRServer/GestureRecognition/GestureCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/GestureRecognition/GestureCore.cs -------------------------------------------------------------------------------- /KinectWithVRServer/GestureRecognition/GestureSettingsUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/GestureRecognition/GestureSettingsUserControl.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/GestureRecognition/GestureSettingsUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/GestureRecognition/GestureSettingsUserControl.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/GestureRecognition/KMeans.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/GestureRecognition/KMeans.cs -------------------------------------------------------------------------------- /KinectWithVRServer/HelperMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/HelperMethods.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Joint Mapping.xlsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Joint Mapping.xlsx -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV1Wrapper/KV1Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV1Wrapper/KV1Core.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV1Wrapper/KV1SdkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV1Wrapper/KV1SdkTest.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV1Wrapper/KV1Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV1Wrapper/KV1Settings.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV1Wrapper/KV1SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV1Wrapper/KV1SettingsControl.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV1Wrapper/KV1SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV1Wrapper/KV1SettingsControl.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV1Wrapper/KV1StatusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV1Wrapper/KV1StatusHelper.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV2Wrapper/KV2Core.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV2Wrapper/KV2Core.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV2Wrapper/KV2SdkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV2Wrapper/KV2SdkTest.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV2Wrapper/KV2Settings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV2Wrapper/KV2Settings.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV2Wrapper/KV2SettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV2Wrapper/KV2SettingsControl.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV2Wrapper/KV2SettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV2Wrapper/KV2SettingsControl.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectV2Wrapper/KV2StatusHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectV2Wrapper/KV2StatusHelper.cs -------------------------------------------------------------------------------- /KinectWithVRServer/KinectWithVRServer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/KinectWithVRServer.csproj -------------------------------------------------------------------------------- /KinectWithVRServer/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/MainWindow.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/MainWindow.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/NativeInterop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NativeInterop.cs -------------------------------------------------------------------------------- /KinectWithVRServer/NetworkKinectWrapper/NKAddDialog.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NetworkKinectWrapper/NKAddDialog.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/NetworkKinectWrapper/NKAddDialog.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NetworkKinectWrapper/NKAddDialog.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/NetworkKinectWrapper/NKCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NetworkKinectWrapper/NKCore.cs -------------------------------------------------------------------------------- /KinectWithVRServer/NetworkKinectWrapper/NKSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NetworkKinectWrapper/NKSettings.cs -------------------------------------------------------------------------------- /KinectWithVRServer/NetworkKinectWrapper/NKSettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NetworkKinectWrapper/NKSettingsControl.xaml -------------------------------------------------------------------------------- /KinectWithVRServer/NetworkKinectWrapper/NKSettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/NetworkKinectWrapper/NKSettingsControl.xaml.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Properties/Resources.resx -------------------------------------------------------------------------------- /KinectWithVRServer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Properties/Settings.settings -------------------------------------------------------------------------------- /KinectWithVRServer/ServerCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/ServerCore.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/ColorDepthEffect/ColorDepthEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/ColorDepthEffect/ColorDepthEffect.fx -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/ColorDepthEffect/ColorDepthEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/ColorDepthEffect/ColorDepthEffect.ps -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/ColorDepthEffect/ColorDepthEffectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/ColorDepthEffect/ColorDepthEffectWrapper.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/ColorScaleEffect/ColorScaleEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/ColorScaleEffect/ColorScaleEffect.fx -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/ColorScaleEffect/ColorScaleEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/ColorScaleEffect/ColorScaleEffect.ps -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/ColorScaleEffect/ColorScaleEffectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/ColorScaleEffect/ColorScaleEffectWrapper.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/DepthScalingEffect/DepthScalingEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/DepthScalingEffect/DepthScalingEffect.fx -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/DepthScalingEffect/DepthScalingEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/DepthScalingEffect/DepthScalingEffect.ps -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/DepthScalingEffect/DepthScalingEffectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/DepthScalingEffect/DepthScalingEffectWrapper.cs -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/NoScalingEffect/NoScalingEffect.fx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/NoScalingEffect/NoScalingEffect.fx -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/NoScalingEffect/NoScalingEffect.ps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/NoScalingEffect/NoScalingEffect.ps -------------------------------------------------------------------------------- /KinectWithVRServer/Shaders/NoScalingEffect/NoScalingEffectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/Shaders/NoScalingEffect/NoScalingEffectWrapper.cs -------------------------------------------------------------------------------- /KinectWithVRServer/SkeletonMerger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/SkeletonMerger.cs -------------------------------------------------------------------------------- /KinectWithVRServer/VerifyDLLs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/VerifyDLLs.cs -------------------------------------------------------------------------------- /KinectWithVRServer/VoiceRecogCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/VoiceRecogCore.cs -------------------------------------------------------------------------------- /KinectWithVRServer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/KinectWithVRServer/app.config -------------------------------------------------------------------------------- /NetworkKinectCore/NetworkKinectCore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/NetworkKinectCore/NetworkKinectCore.cs -------------------------------------------------------------------------------- /NetworkKinectCore/NetworkKinectCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/NetworkKinectCore/NetworkKinectCore.csproj -------------------------------------------------------------------------------- /NetworkKinectCore/NetworkKinectSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/NetworkKinectCore/NetworkKinectSettings.cs -------------------------------------------------------------------------------- /NetworkKinectCore/NetworkKinectSettingsControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/NetworkKinectCore/NetworkKinectSettingsControl.xaml -------------------------------------------------------------------------------- /NetworkKinectCore/NetworkKinectSettingsControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/NetworkKinectCore/NetworkKinectSettingsControl.xaml.cs -------------------------------------------------------------------------------- /NetworkKinectCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/NetworkKinectCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vancegroup/KVR/HEAD/Readme.md --------------------------------------------------------------------------------