├── .gitignore ├── .gitmodules ├── CONTRIBUTING.md ├── ClientLibrary ├── EmotionServiceClient.cs ├── IEmotionServiceClient.cs └── Microsoft.ProjectOxford.Emotion.csproj ├── LICENSE-IMAGE.md ├── LICENSE.md ├── README.md ├── SECURITY.md ├── Sample-WPF ├── App.config ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── Microsoft-logo_rgb_c-gray.png │ └── emotions.png ├── DetectEmotionUsingStreamPage.xaml ├── DetectEmotionUsingStreamPage.xaml.cs ├── DetectEmotionUsingURLPage.xaml ├── DetectEmotionUsingURLPage.xaml.cs ├── EmotionAPI-WPF-Samples.csproj ├── EmotionAPI-WPF-Samples.sln ├── EmotionAPI-WPF-Samples │ └── Properties │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings ├── MainWindow.xaml ├── MainWindow.xaml.cs ├── Properties │ └── AssemblyInfo.cs ├── UserControls │ ├── EmotionDetectionUserControl.xaml │ ├── EmotionDetectionUserControl.xaml.cs │ ├── EmotionListUserControl.xaml │ └── EmotionListUserControl.xaml.cs └── packages.config ├── SampleScreenshots └── SampleRunning.png └── ThirdPartyNotices.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/.gitmodules -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /ClientLibrary/EmotionServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/ClientLibrary/EmotionServiceClient.cs -------------------------------------------------------------------------------- /ClientLibrary/IEmotionServiceClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/ClientLibrary/IEmotionServiceClient.cs -------------------------------------------------------------------------------- /ClientLibrary/Microsoft.ProjectOxford.Emotion.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/ClientLibrary/Microsoft.ProjectOxford.Emotion.csproj -------------------------------------------------------------------------------- /LICENSE-IMAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/LICENSE-IMAGE.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/SECURITY.md -------------------------------------------------------------------------------- /Sample-WPF/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/App.config -------------------------------------------------------------------------------- /Sample-WPF/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/App.xaml -------------------------------------------------------------------------------- /Sample-WPF/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/App.xaml.cs -------------------------------------------------------------------------------- /Sample-WPF/Assets/Microsoft-logo_rgb_c-gray.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/Assets/Microsoft-logo_rgb_c-gray.png -------------------------------------------------------------------------------- /Sample-WPF/Assets/emotions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/Assets/emotions.png -------------------------------------------------------------------------------- /Sample-WPF/DetectEmotionUsingStreamPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/DetectEmotionUsingStreamPage.xaml -------------------------------------------------------------------------------- /Sample-WPF/DetectEmotionUsingStreamPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/DetectEmotionUsingStreamPage.xaml.cs -------------------------------------------------------------------------------- /Sample-WPF/DetectEmotionUsingURLPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/DetectEmotionUsingURLPage.xaml -------------------------------------------------------------------------------- /Sample-WPF/DetectEmotionUsingURLPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/DetectEmotionUsingURLPage.xaml.cs -------------------------------------------------------------------------------- /Sample-WPF/EmotionAPI-WPF-Samples.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/EmotionAPI-WPF-Samples.csproj -------------------------------------------------------------------------------- /Sample-WPF/EmotionAPI-WPF-Samples.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/EmotionAPI-WPF-Samples.sln -------------------------------------------------------------------------------- /Sample-WPF/EmotionAPI-WPF-Samples/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/EmotionAPI-WPF-Samples/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /Sample-WPF/EmotionAPI-WPF-Samples/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/EmotionAPI-WPF-Samples/Properties/Resources.resx -------------------------------------------------------------------------------- /Sample-WPF/EmotionAPI-WPF-Samples/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/EmotionAPI-WPF-Samples/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /Sample-WPF/EmotionAPI-WPF-Samples/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/EmotionAPI-WPF-Samples/Properties/Settings.settings -------------------------------------------------------------------------------- /Sample-WPF/MainWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/MainWindow.xaml -------------------------------------------------------------------------------- /Sample-WPF/MainWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/MainWindow.xaml.cs -------------------------------------------------------------------------------- /Sample-WPF/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Sample-WPF/UserControls/EmotionDetectionUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/UserControls/EmotionDetectionUserControl.xaml -------------------------------------------------------------------------------- /Sample-WPF/UserControls/EmotionDetectionUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/UserControls/EmotionDetectionUserControl.xaml.cs -------------------------------------------------------------------------------- /Sample-WPF/UserControls/EmotionListUserControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/UserControls/EmotionListUserControl.xaml -------------------------------------------------------------------------------- /Sample-WPF/UserControls/EmotionListUserControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/UserControls/EmotionListUserControl.xaml.cs -------------------------------------------------------------------------------- /Sample-WPF/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/Sample-WPF/packages.config -------------------------------------------------------------------------------- /SampleScreenshots/SampleRunning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/SampleScreenshots/SampleRunning.png -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/Cognitive-Emotion-Windows/HEAD/ThirdPartyNotices.txt --------------------------------------------------------------------------------