├── .gitignore ├── Calculator ├── CSDataProcessor.cs ├── Calculator.csproj ├── IDataProcessor.cs └── Properties │ └── AssemblyInfo.cs ├── DataModule ├── DataManager.cs ├── DataModule.csproj ├── Model │ ├── DataModel.cs │ └── SegmentedWordModel.cs └── Properties │ └── AssemblyInfo.cs ├── EducationSystem ├── AbstractKinectFramesHandler.cs ├── ActiveUserDetector.cs ├── App.config ├── App.xaml ├── App.xaml.cs ├── EducationSystem.csproj ├── GameInformationModel.cs ├── GameIntroductionPage.xaml ├── GameIntroductionPage.xaml.cs ├── GameOverPage.xaml ├── GameOverPage.xaml.cs ├── GamePage.xaml ├── GamePage.xaml.cs ├── GamePlayPage.xaml ├── GamePlayPage.xaml.cs ├── GameSelectionPage.xaml ├── GameSelectionPage.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── KinectState.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SignNumGame │ ├── GameManager.cs │ ├── GameSignNumPlayPage.xaml │ ├── GameSignNumPlayPage.xaml.cs │ ├── Grid.cs │ ├── Point.cs │ └── Tile.cs ├── SplashPage.xaml ├── SplashPage.xaml.cs └── util │ ├── AutoNotifyPropertyChanged.cs │ └── ImagePathConverter.cs ├── EmguTest ├── App.config ├── EmguTest.csproj ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── PointHelper.cs ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── GestureComparison └── src │ └── validation │ ├── abstract_classes.py │ ├── body_box_extractor.py │ ├── body_box_presenter.py │ ├── bspline_preprocessor.py │ ├── bspline_presenter.py │ ├── csv_reader.py │ ├── data_checker.py │ ├── dtw_presenter.py │ ├── dtw_processor.py │ ├── hand_presenter.py │ ├── hand_selector.py │ ├── task_runner.py │ └── validation_test.py ├── HandDetector ├── .project ├── .pydevproject ├── App.config ├── App.xaml ├── App.xaml.cs ├── Colorizer.cs ├── ConsoleManager.cs ├── DBManager.cs ├── DataTransferEventArgs.cs ├── HandDetector.csproj ├── HandShapeClassifier.cs ├── HandShapeModel.cs ├── ISubject.cs ├── ImageConverter.cs ├── KalmanFilter.cs ├── KinectController.cs ├── KinectSDKController.cs ├── KinectStudioController.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ ├── MyJoint.cs │ ├── MyJointType.cs │ └── MySkeleton.cs ├── OpenCVController.cs ├── OpenNIController.cs ├── PointHelper.cs ├── Properties │ ├── Annotations.cs │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── ReadWriteCsv.cs ├── SignWordModel.cs ├── Threshold.cs ├── TrackBar.xaml ├── TrackBar.xaml.cs ├── VideoProcessor.cs ├── VisualData.cs ├── packages.config └── win32API.cs ├── HandShapeDetector ├── .idea │ ├── .name │ ├── HandShapeDetector.iml │ ├── encodings.xml │ ├── misc.xml │ ├── modules.xml │ ├── scopes │ │ └── scope_settings.xml │ ├── vcs.xml │ └── workspace.xml ├── .metadata │ ├── .lock │ ├── .plugins │ │ ├── org.eclipse.core.resources │ │ │ ├── .root │ │ │ │ ├── .indexes │ │ │ │ │ ├── history.version │ │ │ │ │ ├── properties.index │ │ │ │ │ └── properties.version │ │ │ │ └── 7.tree │ │ │ └── .safetable │ │ │ │ └── org.eclipse.core.resources │ │ ├── org.eclipse.core.runtime │ │ │ └── .settings │ │ │ │ ├── org.eclipse.core.resources.prefs │ │ │ │ ├── org.eclipse.debug.ui.prefs │ │ │ │ ├── org.eclipse.jdt.ui.prefs │ │ │ │ ├── org.eclipse.ui.ide.prefs │ │ │ │ └── org.eclipse.ui.prefs │ │ ├── org.eclipse.e4.workbench │ │ │ └── workbench.xmi │ │ ├── org.eclipse.equinox.p2.ui │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.jdt.core │ │ │ ├── assumedExternalFilesCache │ │ │ ├── externalFilesCache │ │ │ ├── invalidArchivesCache │ │ │ ├── nonChainingJarsCache │ │ │ └── variablesAndContainers.dat │ │ ├── org.eclipse.jdt.ui │ │ │ ├── OpenTypeHistory.xml │ │ │ ├── QualifiedTypeNameHistory.xml │ │ │ └── dialog_settings.xml │ │ ├── org.eclipse.pde.core │ │ │ └── .cache │ │ │ │ └── clean-cache.properties │ │ ├── org.eclipse.ui.ide │ │ │ └── dialog_settings.xml │ │ └── org.eclipse.ui.workbench │ │ │ ├── dialog_settings.xml │ │ │ └── workingsets.xml │ └── version.ini ├── .project ├── .pydevproject └── src │ ├── CSVFrameData.py │ ├── FrameConverter.py │ ├── SLServer.py │ ├── VideoFrameData.py │ ├── basic.py │ ├── caffeDL.py │ ├── caffe_server_handler.py │ ├── clusterBase.py │ ├── configGenerator.py │ ├── constant_numbers.py │ ├── echo_client.py │ ├── echo_server.py │ ├── hand_shape_client.py │ ├── hand_shape_client_test.py │ ├── hand_shape_server.py │ ├── hand_shape_server_test.py │ ├── hodmodule.py │ ├── hogmodule.py │ ├── kMedoid.py │ ├── load.py │ ├── slWord.py │ ├── svmmodule.py │ ├── train.py │ └── try.py ├── KinectSignLanguage.sln ├── KinectSignLanguage.sln.DotSettings ├── LICENSE ├── LauncherCMD ├── App.config ├── LauncherCMD.cs └── LauncherCMD.csproj ├── LauncherKinect ├── App.xaml ├── App.xaml.cs ├── Images │ ├── CURElogo.png │ ├── CheckedHover.png │ ├── CheckedNormal.png │ ├── Kinect.ico │ ├── Logo.png │ ├── Status.png │ ├── UncheckedHover.png │ └── UncheckedNormal.png ├── LauncherKinect.csproj ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings └── app.config ├── OpenCV ├── OpenCV.vcxproj ├── OpenCV.vcxproj.filters ├── PropertySheet.props ├── example.txt ├── example1.txt ├── hog_template.txt ├── hog_template5.txt ├── main.cpp └── mog.cpp ├── OpenNI2 ├── NiWrapper.Net.dll ├── NiWrapper.dll ├── OpenNI.ini ├── OpenNI2.dll └── OpenNI2 │ └── Drivers │ ├── Kinect.dll │ ├── OniFile.dll │ ├── PS1080.dll │ ├── PS1080.ini │ └── PSLink.dll ├── Project1 ├── Project1.vcxproj └── Project1.vcxproj.filters ├── README.md ├── RecognitionSystem ├── Classifier.cs ├── DataProcessor.cs ├── DataStorage │ ├── FrameData.cs │ ├── JointType.cs │ ├── Person.cs │ └── SegmentationData.cs ├── DataTransferEventArgs.cs ├── DataWarehouse.cs ├── FacialExpressionModule.cs ├── FeatureSelector.cs ├── GestureModule.cs ├── HMM.cs ├── ISubject.cs ├── LeariningModel.cs ├── MotionTrackingModule.cs ├── NLPModule.cs ├── Postprocessor.cs ├── Properties │ └── AssemblyInfo.cs ├── RecognitionController.cs ├── RecognitionSystem.csproj ├── SVM.cs ├── SegmentationModule.cs ├── StaticTools │ ├── ConsoleManager.cs │ ├── StaticParams.cs │ └── UtilityTools.cs └── VisualFeatureModule.cs ├── SLDebugger ├── App.config ├── App.xaml ├── App.xaml.cs ├── ConsoleManager.cs ├── DataManager.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Module │ ├── ConfigReader.cs │ ├── DBReader.cs │ ├── DataReader.cs │ └── XMLReader.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── SLDebugger.csproj ├── StaticParams │ ├── Config.xml │ ├── DataType.cs │ ├── FileName.cs │ └── SegmentType.cs ├── View │ ├── ChartView.xaml │ ├── ChartView.xaml.cs │ ├── ControlComponentView.cs │ ├── DisplayRange.cs │ ├── SegWordShowBox.xaml │ ├── SegWordShowBox.xaml.cs │ ├── TrajectoryView.cs │ └── ViewportAxesRangeRestriction.cs └── ViewModel │ └── TwoDimensionViewModel.cs ├── SignLanguageEducationSystem ├── App.config ├── App.xaml ├── App.xaml.cs ├── AutoNotifyPropertyChanged.cs ├── DTWViewModel.cs ├── DTWWindow.xaml ├── DTWWindow.xaml.cs ├── HomePage.xaml ├── HomePage.xaml.cs ├── Images │ ├── back01.png │ ├── banner.png │ ├── cuhklogo.png │ ├── curelogo.png │ ├── learn.png │ ├── question.jpg │ └── restart.png ├── Infrastructure │ ├── MultiSelect │ │ ├── IListItemConverter.cs │ │ ├── MultiSelectorBehaviours.cs │ │ ├── RelayCommand.cs │ │ └── TwoListSynchronizer.cs │ ├── StrongTypingHelper.cs │ └── ViewModelBase.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Model │ └── SignWord.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md ├── SignBrowserPage.xaml ├── SignBrowserPage.xaml.cs ├── SignLanguageEducationSystem.csproj ├── SignModel.cs ├── SignWordPage.xaml ├── SignWordPage.xaml.cs ├── StartPage.xaml ├── StartPage.xaml.cs ├── SystemStatusCollection.cs └── packages.config ├── UML ├── CodeGeneration.Log.xml ├── ModelDefinition │ ├── Package_1413.uml │ └── sign_language.uml ├── RecognitionUML.classdiagram ├── RecognitionUML.classdiagram.layout └── UML.modelproj ├── UnitTest ├── Properties │ └── AssemblyInfo.cs ├── UnitTest.csproj └── UnitTest1.cs ├── XEDParser ├── App.config ├── App.xaml ├── App.xaml.cs ├── Colorizer.cs ├── ConsoleManager.cs ├── ImageConverter.cs ├── KinectStudioController.cs ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── ImageConverter.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── XEDParser.csproj ├── XEDParser.rar └── win32API.cs └── readme /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/.gitignore -------------------------------------------------------------------------------- /Calculator/CSDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/Calculator/CSDataProcessor.cs -------------------------------------------------------------------------------- /Calculator/Calculator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/Calculator/Calculator.csproj -------------------------------------------------------------------------------- /Calculator/IDataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/Calculator/IDataProcessor.cs -------------------------------------------------------------------------------- /Calculator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/Calculator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DataModule/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/DataModule/DataManager.cs -------------------------------------------------------------------------------- /DataModule/DataModule.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/DataModule/DataModule.csproj -------------------------------------------------------------------------------- /DataModule/Model/DataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/DataModule/Model/DataModel.cs -------------------------------------------------------------------------------- /DataModule/Model/SegmentedWordModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/DataModule/Model/SegmentedWordModel.cs -------------------------------------------------------------------------------- /DataModule/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/DataModule/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EducationSystem/AbstractKinectFramesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/AbstractKinectFramesHandler.cs -------------------------------------------------------------------------------- /EducationSystem/ActiveUserDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/ActiveUserDetector.cs -------------------------------------------------------------------------------- /EducationSystem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/App.config -------------------------------------------------------------------------------- /EducationSystem/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/App.xaml -------------------------------------------------------------------------------- /EducationSystem/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/App.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/EducationSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/EducationSystem.csproj -------------------------------------------------------------------------------- /EducationSystem/GameInformationModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameInformationModel.cs -------------------------------------------------------------------------------- /EducationSystem/GameIntroductionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameIntroductionPage.xaml -------------------------------------------------------------------------------- /EducationSystem/GameIntroductionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameIntroductionPage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/GameOverPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameOverPage.xaml -------------------------------------------------------------------------------- /EducationSystem/GameOverPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameOverPage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/GamePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GamePage.xaml -------------------------------------------------------------------------------- /EducationSystem/GamePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GamePage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/GamePlayPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GamePlayPage.xaml -------------------------------------------------------------------------------- /EducationSystem/GamePlayPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GamePlayPage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/GameSelectionPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameSelectionPage.xaml -------------------------------------------------------------------------------- /EducationSystem/GameSelectionPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/GameSelectionPage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/HomePage.xaml -------------------------------------------------------------------------------- /EducationSystem/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/HomePage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/KinectState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/KinectState.cs -------------------------------------------------------------------------------- /EducationSystem/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/MainWindow.xaml -------------------------------------------------------------------------------- /EducationSystem/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/MainWindow.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EducationSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EducationSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /EducationSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EducationSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /EducationSystem/SignNumGame/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SignNumGame/GameManager.cs -------------------------------------------------------------------------------- /EducationSystem/SignNumGame/GameSignNumPlayPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SignNumGame/GameSignNumPlayPage.xaml -------------------------------------------------------------------------------- /EducationSystem/SignNumGame/GameSignNumPlayPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SignNumGame/GameSignNumPlayPage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/SignNumGame/Grid.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SignNumGame/Grid.cs -------------------------------------------------------------------------------- /EducationSystem/SignNumGame/Point.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SignNumGame/Point.cs -------------------------------------------------------------------------------- /EducationSystem/SignNumGame/Tile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SignNumGame/Tile.cs -------------------------------------------------------------------------------- /EducationSystem/SplashPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SplashPage.xaml -------------------------------------------------------------------------------- /EducationSystem/SplashPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/SplashPage.xaml.cs -------------------------------------------------------------------------------- /EducationSystem/util/AutoNotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/util/AutoNotifyPropertyChanged.cs -------------------------------------------------------------------------------- /EducationSystem/util/ImagePathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EducationSystem/util/ImagePathConverter.cs -------------------------------------------------------------------------------- /EmguTest/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/App.config -------------------------------------------------------------------------------- /EmguTest/EmguTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/EmguTest.csproj -------------------------------------------------------------------------------- /EmguTest/Form1.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Form1.Designer.cs -------------------------------------------------------------------------------- /EmguTest/Form1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Form1.cs -------------------------------------------------------------------------------- /EmguTest/Form1.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Form1.resx -------------------------------------------------------------------------------- /EmguTest/PointHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/PointHelper.cs -------------------------------------------------------------------------------- /EmguTest/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Program.cs -------------------------------------------------------------------------------- /EmguTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EmguTest/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /EmguTest/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Properties/Resources.resx -------------------------------------------------------------------------------- /EmguTest/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /EmguTest/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/EmguTest/Properties/Settings.settings -------------------------------------------------------------------------------- /GestureComparison/src/validation/abstract_classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/abstract_classes.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/body_box_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/body_box_extractor.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/body_box_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/body_box_presenter.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/bspline_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/bspline_preprocessor.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/bspline_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/bspline_presenter.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/csv_reader.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/csv_reader.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/data_checker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/data_checker.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/dtw_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/dtw_presenter.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/dtw_processor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/dtw_processor.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/hand_presenter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/hand_presenter.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/hand_selector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/hand_selector.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/task_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/task_runner.py -------------------------------------------------------------------------------- /GestureComparison/src/validation/validation_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/GestureComparison/src/validation/validation_test.py -------------------------------------------------------------------------------- /HandDetector/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/.project -------------------------------------------------------------------------------- /HandDetector/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/.pydevproject -------------------------------------------------------------------------------- /HandDetector/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/App.config -------------------------------------------------------------------------------- /HandDetector/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/App.xaml -------------------------------------------------------------------------------- /HandDetector/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/App.xaml.cs -------------------------------------------------------------------------------- /HandDetector/Colorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Colorizer.cs -------------------------------------------------------------------------------- /HandDetector/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/ConsoleManager.cs -------------------------------------------------------------------------------- /HandDetector/DBManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/DBManager.cs -------------------------------------------------------------------------------- /HandDetector/DataTransferEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/DataTransferEventArgs.cs -------------------------------------------------------------------------------- /HandDetector/HandDetector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/HandDetector.csproj -------------------------------------------------------------------------------- /HandDetector/HandShapeClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/HandShapeClassifier.cs -------------------------------------------------------------------------------- /HandDetector/HandShapeModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/HandShapeModel.cs -------------------------------------------------------------------------------- /HandDetector/ISubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/ISubject.cs -------------------------------------------------------------------------------- /HandDetector/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/ImageConverter.cs -------------------------------------------------------------------------------- /HandDetector/KalmanFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/KalmanFilter.cs -------------------------------------------------------------------------------- /HandDetector/KinectController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/KinectController.cs -------------------------------------------------------------------------------- /HandDetector/KinectSDKController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/KinectSDKController.cs -------------------------------------------------------------------------------- /HandDetector/KinectStudioController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/KinectStudioController.cs -------------------------------------------------------------------------------- /HandDetector/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/MainWindow.xaml -------------------------------------------------------------------------------- /HandDetector/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/MainWindow.xaml.cs -------------------------------------------------------------------------------- /HandDetector/Model/MyJoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Model/MyJoint.cs -------------------------------------------------------------------------------- /HandDetector/Model/MyJointType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Model/MyJointType.cs -------------------------------------------------------------------------------- /HandDetector/Model/MySkeleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Model/MySkeleton.cs -------------------------------------------------------------------------------- /HandDetector/OpenCVController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/OpenCVController.cs -------------------------------------------------------------------------------- /HandDetector/OpenNIController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/OpenNIController.cs -------------------------------------------------------------------------------- /HandDetector/PointHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/PointHelper.cs -------------------------------------------------------------------------------- /HandDetector/Properties/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Properties/Annotations.cs -------------------------------------------------------------------------------- /HandDetector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /HandDetector/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /HandDetector/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Properties/Resources.resx -------------------------------------------------------------------------------- /HandDetector/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /HandDetector/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Properties/Settings.settings -------------------------------------------------------------------------------- /HandDetector/ReadWriteCsv.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/ReadWriteCsv.cs -------------------------------------------------------------------------------- /HandDetector/SignWordModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/SignWordModel.cs -------------------------------------------------------------------------------- /HandDetector/Threshold.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/Threshold.cs -------------------------------------------------------------------------------- /HandDetector/TrackBar.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/TrackBar.xaml -------------------------------------------------------------------------------- /HandDetector/TrackBar.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/TrackBar.xaml.cs -------------------------------------------------------------------------------- /HandDetector/VideoProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/VideoProcessor.cs -------------------------------------------------------------------------------- /HandDetector/VisualData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/VisualData.cs -------------------------------------------------------------------------------- /HandDetector/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/packages.config -------------------------------------------------------------------------------- /HandDetector/win32API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandDetector/win32API.cs -------------------------------------------------------------------------------- /HandShapeDetector/.idea/.name: -------------------------------------------------------------------------------- 1 | HandShapeDetector -------------------------------------------------------------------------------- /HandShapeDetector/.idea/HandShapeDetector.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/HandShapeDetector.iml -------------------------------------------------------------------------------- /HandShapeDetector/.idea/encodings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/encodings.xml -------------------------------------------------------------------------------- /HandShapeDetector/.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/misc.xml -------------------------------------------------------------------------------- /HandShapeDetector/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/modules.xml -------------------------------------------------------------------------------- /HandShapeDetector/.idea/scopes/scope_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/scopes/scope_settings.xml -------------------------------------------------------------------------------- /HandShapeDetector/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/vcs.xml -------------------------------------------------------------------------------- /HandShapeDetector/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.idea/workspace.xml -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.lock: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/history.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.index: -------------------------------------------------------------------------------- 1 | /org.eclipse.jdt.corestateVersionNumber27 -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.root/.indexes/properties.version: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.root/7.tree: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.root/7.tree -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.core.resources/.safetable/org.eclipse.core.resources -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.core.resources.prefs -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.debug.ui.prefs -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.jdt.ui.prefs -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.ide.prefs -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.core.runtime/.settings/org.eclipse.ui.prefs: -------------------------------------------------------------------------------- 1 | eclipse.preferences.version=1 2 | showIntro=false 3 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.e4.workbench/workbench.xmi -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.equinox.p2.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.equinox.p2.ui/dialog_settings.xml -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.core/assumedExternalFilesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.core/externalFilesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.core/invalidArchivesCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.core/nonChainingJarsCache: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.core/variablesAndContainers.dat -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.ui/OpenTypeHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.ui/QualifiedTypeNameHistory.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.jdt.ui/dialog_settings.xml -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.pde.core/.cache/clean-cache.properties: -------------------------------------------------------------------------------- 1 | #Cached timestamps 2 | #Fri Jan 02 17:53:05 CST 2015 3 | -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.ui.ide/dialog_settings.xml -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.ui.workbench/dialog_settings.xml -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/.plugins/org.eclipse.ui.workbench/workingsets.xml -------------------------------------------------------------------------------- /HandShapeDetector/.metadata/version.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.metadata/version.ini -------------------------------------------------------------------------------- /HandShapeDetector/.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.project -------------------------------------------------------------------------------- /HandShapeDetector/.pydevproject: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/.pydevproject -------------------------------------------------------------------------------- /HandShapeDetector/src/CSVFrameData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/CSVFrameData.py -------------------------------------------------------------------------------- /HandShapeDetector/src/FrameConverter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/FrameConverter.py -------------------------------------------------------------------------------- /HandShapeDetector/src/SLServer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/SLServer.py -------------------------------------------------------------------------------- /HandShapeDetector/src/VideoFrameData.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/VideoFrameData.py -------------------------------------------------------------------------------- /HandShapeDetector/src/basic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/basic.py -------------------------------------------------------------------------------- /HandShapeDetector/src/caffeDL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/caffeDL.py -------------------------------------------------------------------------------- /HandShapeDetector/src/caffe_server_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/caffe_server_handler.py -------------------------------------------------------------------------------- /HandShapeDetector/src/clusterBase.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/clusterBase.py -------------------------------------------------------------------------------- /HandShapeDetector/src/configGenerator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/configGenerator.py -------------------------------------------------------------------------------- /HandShapeDetector/src/constant_numbers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/constant_numbers.py -------------------------------------------------------------------------------- /HandShapeDetector/src/echo_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/echo_client.py -------------------------------------------------------------------------------- /HandShapeDetector/src/echo_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/echo_server.py -------------------------------------------------------------------------------- /HandShapeDetector/src/hand_shape_client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/hand_shape_client.py -------------------------------------------------------------------------------- /HandShapeDetector/src/hand_shape_client_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/hand_shape_client_test.py -------------------------------------------------------------------------------- /HandShapeDetector/src/hand_shape_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/hand_shape_server.py -------------------------------------------------------------------------------- /HandShapeDetector/src/hand_shape_server_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/hand_shape_server_test.py -------------------------------------------------------------------------------- /HandShapeDetector/src/hodmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/hodmodule.py -------------------------------------------------------------------------------- /HandShapeDetector/src/hogmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/hogmodule.py -------------------------------------------------------------------------------- /HandShapeDetector/src/kMedoid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/kMedoid.py -------------------------------------------------------------------------------- /HandShapeDetector/src/load.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/load.py -------------------------------------------------------------------------------- /HandShapeDetector/src/slWord.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/slWord.py -------------------------------------------------------------------------------- /HandShapeDetector/src/svmmodule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/svmmodule.py -------------------------------------------------------------------------------- /HandShapeDetector/src/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/train.py -------------------------------------------------------------------------------- /HandShapeDetector/src/try.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/HandShapeDetector/src/try.py -------------------------------------------------------------------------------- /KinectSignLanguage.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/KinectSignLanguage.sln -------------------------------------------------------------------------------- /KinectSignLanguage.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/KinectSignLanguage.sln.DotSettings -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LauncherCMD/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherCMD/App.config -------------------------------------------------------------------------------- /LauncherCMD/LauncherCMD.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherCMD/LauncherCMD.cs -------------------------------------------------------------------------------- /LauncherCMD/LauncherCMD.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherCMD/LauncherCMD.csproj -------------------------------------------------------------------------------- /LauncherKinect/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/App.xaml -------------------------------------------------------------------------------- /LauncherKinect/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/App.xaml.cs -------------------------------------------------------------------------------- /LauncherKinect/Images/CURElogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/CURElogo.png -------------------------------------------------------------------------------- /LauncherKinect/Images/CheckedHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/CheckedHover.png -------------------------------------------------------------------------------- /LauncherKinect/Images/CheckedNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/CheckedNormal.png -------------------------------------------------------------------------------- /LauncherKinect/Images/Kinect.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/Kinect.ico -------------------------------------------------------------------------------- /LauncherKinect/Images/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/Logo.png -------------------------------------------------------------------------------- /LauncherKinect/Images/Status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/Status.png -------------------------------------------------------------------------------- /LauncherKinect/Images/UncheckedHover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/UncheckedHover.png -------------------------------------------------------------------------------- /LauncherKinect/Images/UncheckedNormal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Images/UncheckedNormal.png -------------------------------------------------------------------------------- /LauncherKinect/LauncherKinect.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/LauncherKinect.csproj -------------------------------------------------------------------------------- /LauncherKinect/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/MainWindow.xaml -------------------------------------------------------------------------------- /LauncherKinect/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/MainWindow.xaml.cs -------------------------------------------------------------------------------- /LauncherKinect/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /LauncherKinect/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /LauncherKinect/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Properties/Resources.resx -------------------------------------------------------------------------------- /LauncherKinect/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /LauncherKinect/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/Properties/Settings.settings -------------------------------------------------------------------------------- /LauncherKinect/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/LauncherKinect/app.config -------------------------------------------------------------------------------- /OpenCV/OpenCV.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenCV/OpenCV.vcxproj -------------------------------------------------------------------------------- /OpenCV/OpenCV.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenCV/OpenCV.vcxproj.filters -------------------------------------------------------------------------------- /OpenCV/PropertySheet.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenCV/PropertySheet.props -------------------------------------------------------------------------------- /OpenCV/example.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenCV/example.txt -------------------------------------------------------------------------------- /OpenCV/example1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenCV/example1.txt -------------------------------------------------------------------------------- /OpenCV/hog_template.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenCV/hog_template5.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenCV/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenCV/main.cpp -------------------------------------------------------------------------------- /OpenCV/mog.cpp: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /OpenNI2/NiWrapper.Net.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/NiWrapper.Net.dll -------------------------------------------------------------------------------- /OpenNI2/NiWrapper.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/NiWrapper.dll -------------------------------------------------------------------------------- /OpenNI2/OpenNI.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI.ini -------------------------------------------------------------------------------- /OpenNI2/OpenNI2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI2.dll -------------------------------------------------------------------------------- /OpenNI2/OpenNI2/Drivers/Kinect.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI2/Drivers/Kinect.dll -------------------------------------------------------------------------------- /OpenNI2/OpenNI2/Drivers/OniFile.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI2/Drivers/OniFile.dll -------------------------------------------------------------------------------- /OpenNI2/OpenNI2/Drivers/PS1080.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI2/Drivers/PS1080.dll -------------------------------------------------------------------------------- /OpenNI2/OpenNI2/Drivers/PS1080.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI2/Drivers/PS1080.ini -------------------------------------------------------------------------------- /OpenNI2/OpenNI2/Drivers/PSLink.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/OpenNI2/OpenNI2/Drivers/PSLink.dll -------------------------------------------------------------------------------- /Project1/Project1.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/Project1/Project1.vcxproj -------------------------------------------------------------------------------- /Project1/Project1.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/Project1/Project1.vcxproj.filters -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/README.md -------------------------------------------------------------------------------- /RecognitionSystem/Classifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/Classifier.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataProcessor.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataStorage/FrameData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataStorage/FrameData.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataStorage/JointType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataStorage/JointType.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataStorage/Person.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataStorage/Person.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataStorage/SegmentationData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataStorage/SegmentationData.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataTransferEventArgs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataTransferEventArgs.cs -------------------------------------------------------------------------------- /RecognitionSystem/DataWarehouse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/DataWarehouse.cs -------------------------------------------------------------------------------- /RecognitionSystem/FacialExpressionModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/FacialExpressionModule.cs -------------------------------------------------------------------------------- /RecognitionSystem/FeatureSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/FeatureSelector.cs -------------------------------------------------------------------------------- /RecognitionSystem/GestureModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/GestureModule.cs -------------------------------------------------------------------------------- /RecognitionSystem/HMM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/HMM.cs -------------------------------------------------------------------------------- /RecognitionSystem/ISubject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/ISubject.cs -------------------------------------------------------------------------------- /RecognitionSystem/LeariningModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/LeariningModel.cs -------------------------------------------------------------------------------- /RecognitionSystem/MotionTrackingModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/MotionTrackingModule.cs -------------------------------------------------------------------------------- /RecognitionSystem/NLPModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/NLPModule.cs -------------------------------------------------------------------------------- /RecognitionSystem/Postprocessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/Postprocessor.cs -------------------------------------------------------------------------------- /RecognitionSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /RecognitionSystem/RecognitionController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/RecognitionController.cs -------------------------------------------------------------------------------- /RecognitionSystem/RecognitionSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/RecognitionSystem.csproj -------------------------------------------------------------------------------- /RecognitionSystem/SVM.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/SVM.cs -------------------------------------------------------------------------------- /RecognitionSystem/SegmentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/SegmentationModule.cs -------------------------------------------------------------------------------- /RecognitionSystem/StaticTools/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/StaticTools/ConsoleManager.cs -------------------------------------------------------------------------------- /RecognitionSystem/StaticTools/StaticParams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/StaticTools/StaticParams.cs -------------------------------------------------------------------------------- /RecognitionSystem/StaticTools/UtilityTools.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/StaticTools/UtilityTools.cs -------------------------------------------------------------------------------- /RecognitionSystem/VisualFeatureModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/RecognitionSystem/VisualFeatureModule.cs -------------------------------------------------------------------------------- /SLDebugger/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/App.config -------------------------------------------------------------------------------- /SLDebugger/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/App.xaml -------------------------------------------------------------------------------- /SLDebugger/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/App.xaml.cs -------------------------------------------------------------------------------- /SLDebugger/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/ConsoleManager.cs -------------------------------------------------------------------------------- /SLDebugger/DataManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/DataManager.cs -------------------------------------------------------------------------------- /SLDebugger/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/MainWindow.xaml -------------------------------------------------------------------------------- /SLDebugger/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SLDebugger/Module/ConfigReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Module/ConfigReader.cs -------------------------------------------------------------------------------- /SLDebugger/Module/DBReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Module/DBReader.cs -------------------------------------------------------------------------------- /SLDebugger/Module/DataReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Module/DataReader.cs -------------------------------------------------------------------------------- /SLDebugger/Module/XMLReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Module/XMLReader.cs -------------------------------------------------------------------------------- /SLDebugger/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SLDebugger/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SLDebugger/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Properties/Resources.resx -------------------------------------------------------------------------------- /SLDebugger/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SLDebugger/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/Properties/Settings.settings -------------------------------------------------------------------------------- /SLDebugger/SLDebugger.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/SLDebugger.csproj -------------------------------------------------------------------------------- /SLDebugger/StaticParams/Config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/StaticParams/Config.xml -------------------------------------------------------------------------------- /SLDebugger/StaticParams/DataType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/StaticParams/DataType.cs -------------------------------------------------------------------------------- /SLDebugger/StaticParams/FileName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/StaticParams/FileName.cs -------------------------------------------------------------------------------- /SLDebugger/StaticParams/SegmentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/StaticParams/SegmentType.cs -------------------------------------------------------------------------------- /SLDebugger/View/ChartView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/ChartView.xaml -------------------------------------------------------------------------------- /SLDebugger/View/ChartView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/ChartView.xaml.cs -------------------------------------------------------------------------------- /SLDebugger/View/ControlComponentView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/ControlComponentView.cs -------------------------------------------------------------------------------- /SLDebugger/View/DisplayRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/DisplayRange.cs -------------------------------------------------------------------------------- /SLDebugger/View/SegWordShowBox.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/SegWordShowBox.xaml -------------------------------------------------------------------------------- /SLDebugger/View/SegWordShowBox.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/SegWordShowBox.xaml.cs -------------------------------------------------------------------------------- /SLDebugger/View/TrajectoryView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/TrajectoryView.cs -------------------------------------------------------------------------------- /SLDebugger/View/ViewportAxesRangeRestriction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/View/ViewportAxesRangeRestriction.cs -------------------------------------------------------------------------------- /SLDebugger/ViewModel/TwoDimensionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SLDebugger/ViewModel/TwoDimensionViewModel.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/App.config -------------------------------------------------------------------------------- /SignLanguageEducationSystem/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/App.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/App.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/AutoNotifyPropertyChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/AutoNotifyPropertyChanged.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/DTWViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/DTWViewModel.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/DTWWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/DTWWindow.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/DTWWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/DTWWindow.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/HomePage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/HomePage.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/HomePage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/HomePage.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/back01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/back01.png -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/banner.png -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/cuhklogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/cuhklogo.png -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/curelogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/curelogo.png -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/learn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/learn.png -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/question.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/question.jpg -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Images/restart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Images/restart.png -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Infrastructure/MultiSelect/IListItemConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Infrastructure/MultiSelect/IListItemConverter.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Infrastructure/MultiSelect/MultiSelectorBehaviours.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Infrastructure/MultiSelect/MultiSelectorBehaviours.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Infrastructure/MultiSelect/RelayCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Infrastructure/MultiSelect/RelayCommand.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Infrastructure/MultiSelect/TwoListSynchronizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Infrastructure/MultiSelect/TwoListSynchronizer.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Infrastructure/StrongTypingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Infrastructure/StrongTypingHelper.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Infrastructure/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Infrastructure/ViewModelBase.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/MainWindow.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/MainWindow.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Model/SignWord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Model/SignWord.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Properties/Resources.resx -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/Properties/Settings.settings -------------------------------------------------------------------------------- /SignLanguageEducationSystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/README.md -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SignBrowserPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SignBrowserPage.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SignBrowserPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SignBrowserPage.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SignLanguageEducationSystem.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SignLanguageEducationSystem.csproj -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SignModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SignModel.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SignWordPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SignWordPage.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SignWordPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SignWordPage.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/StartPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/StartPage.xaml -------------------------------------------------------------------------------- /SignLanguageEducationSystem/StartPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/StartPage.xaml.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/SystemStatusCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/SystemStatusCollection.cs -------------------------------------------------------------------------------- /SignLanguageEducationSystem/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/SignLanguageEducationSystem/packages.config -------------------------------------------------------------------------------- /UML/CodeGeneration.Log.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UML/CodeGeneration.Log.xml -------------------------------------------------------------------------------- /UML/ModelDefinition/Package_1413.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UML/ModelDefinition/Package_1413.uml -------------------------------------------------------------------------------- /UML/ModelDefinition/sign_language.uml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UML/ModelDefinition/sign_language.uml -------------------------------------------------------------------------------- /UML/RecognitionUML.classdiagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UML/RecognitionUML.classdiagram -------------------------------------------------------------------------------- /UML/RecognitionUML.classdiagram.layout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UML/RecognitionUML.classdiagram.layout -------------------------------------------------------------------------------- /UML/UML.modelproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UML/UML.modelproj -------------------------------------------------------------------------------- /UnitTest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UnitTest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /UnitTest/UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UnitTest/UnitTest.csproj -------------------------------------------------------------------------------- /UnitTest/UnitTest1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/UnitTest/UnitTest1.cs -------------------------------------------------------------------------------- /XEDParser/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/App.config -------------------------------------------------------------------------------- /XEDParser/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/App.xaml -------------------------------------------------------------------------------- /XEDParser/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/App.xaml.cs -------------------------------------------------------------------------------- /XEDParser/Colorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Colorizer.cs -------------------------------------------------------------------------------- /XEDParser/ConsoleManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/ConsoleManager.cs -------------------------------------------------------------------------------- /XEDParser/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/ImageConverter.cs -------------------------------------------------------------------------------- /XEDParser/KinectStudioController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/KinectStudioController.cs -------------------------------------------------------------------------------- /XEDParser/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/MainWindow.xaml -------------------------------------------------------------------------------- /XEDParser/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/MainWindow.xaml.cs -------------------------------------------------------------------------------- /XEDParser/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /XEDParser/Properties/ImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Properties/ImageConverter.cs -------------------------------------------------------------------------------- /XEDParser/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /XEDParser/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Properties/Resources.resx -------------------------------------------------------------------------------- /XEDParser/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /XEDParser/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/Properties/Settings.settings -------------------------------------------------------------------------------- /XEDParser/XEDParser.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/XEDParser.csproj -------------------------------------------------------------------------------- /XEDParser/XEDParser.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/XEDParser.rar -------------------------------------------------------------------------------- /XEDParser/win32API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/huangfuyang/Sign-Language-with-Kinect/HEAD/XEDParser/win32API.cs -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- 1 | --------------------------------------------------------------------------------