├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Directory.Build.props ├── Directory.Build.targets ├── EmotionRecognizer ├── EmotionRecognizer.cs ├── EmotionRecognizer.licenseheader ├── IntelligentAPI_EmotionRecognizer.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── IntelligentAPI_EmotionRecognizer.rd.xml └── Scripts │ └── script.ps1 ├── ImageClassifier ├── Assets │ └── Labels.json ├── ImageClassifier.licenseheader ├── IntelligentAPI_ImageClassifier.csproj ├── Properties │ ├── AssemblyInfo.cs │ └── IntelligentAPI_ImageClassifier.rd.xml ├── Scripts │ └── script.ps1 ├── SqueezeNetImageClassifier.cs └── model.cs ├── IntelligentAPIs.sln ├── IntelligentAPIsTester ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ ├── Wide310x150Logo.scale-200.png │ └── background.jpg ├── IntelligentLabsTest.csproj ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml ├── ResultsPage.xaml ├── ResultsPage.xaml.cs └── Scripts │ └── script.ps1 ├── License.md ├── ObjectDetector ├── Assets │ └── Yolo.cs ├── IntelligentAPI_ObjectDetector.csproj ├── IntelligentAPI_ObjectDetector.pri ├── ObjectDetector.licenseheader ├── Properties │ ├── AssemblyInfo.cs │ └── IntelligentAPI_ObjectDetector.rd.xml ├── Scripts │ └── script.ps1 ├── YOLOObjectDetector.cs └── Yolo.cs ├── README.md ├── ThirdPartyNotices.txt ├── Windows.Toolkit.Common.props ├── global.json └── nuget.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /EmotionRecognizer/EmotionRecognizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/EmotionRecognizer/EmotionRecognizer.cs -------------------------------------------------------------------------------- /EmotionRecognizer/EmotionRecognizer.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/EmotionRecognizer/EmotionRecognizer.licenseheader -------------------------------------------------------------------------------- /EmotionRecognizer/IntelligentAPI_EmotionRecognizer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/EmotionRecognizer/IntelligentAPI_EmotionRecognizer.csproj -------------------------------------------------------------------------------- /EmotionRecognizer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/EmotionRecognizer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /EmotionRecognizer/Properties/IntelligentAPI_EmotionRecognizer.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/EmotionRecognizer/Properties/IntelligentAPI_EmotionRecognizer.rd.xml -------------------------------------------------------------------------------- /EmotionRecognizer/Scripts/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/EmotionRecognizer/Scripts/script.ps1 -------------------------------------------------------------------------------- /ImageClassifier/Assets/Labels.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/Assets/Labels.json -------------------------------------------------------------------------------- /ImageClassifier/ImageClassifier.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/ImageClassifier.licenseheader -------------------------------------------------------------------------------- /ImageClassifier/IntelligentAPI_ImageClassifier.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/IntelligentAPI_ImageClassifier.csproj -------------------------------------------------------------------------------- /ImageClassifier/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ImageClassifier/Properties/IntelligentAPI_ImageClassifier.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/Properties/IntelligentAPI_ImageClassifier.rd.xml -------------------------------------------------------------------------------- /ImageClassifier/Scripts/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/Scripts/script.ps1 -------------------------------------------------------------------------------- /ImageClassifier/SqueezeNetImageClassifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/SqueezeNetImageClassifier.cs -------------------------------------------------------------------------------- /ImageClassifier/model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ImageClassifier/model.cs -------------------------------------------------------------------------------- /IntelligentAPIs.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIs.sln -------------------------------------------------------------------------------- /IntelligentAPIsTester/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/App.xaml -------------------------------------------------------------------------------- /IntelligentAPIsTester/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/App.xaml.cs -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/StoreLogo.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /IntelligentAPIsTester/Assets/background.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Assets/background.jpg -------------------------------------------------------------------------------- /IntelligentAPIsTester/IntelligentLabsTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/IntelligentLabsTest.csproj -------------------------------------------------------------------------------- /IntelligentAPIsTester/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/MainPage.xaml -------------------------------------------------------------------------------- /IntelligentAPIsTester/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/MainPage.xaml.cs -------------------------------------------------------------------------------- /IntelligentAPIsTester/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Package.appxmanifest -------------------------------------------------------------------------------- /IntelligentAPIsTester/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /IntelligentAPIsTester/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Properties/Default.rd.xml -------------------------------------------------------------------------------- /IntelligentAPIsTester/ResultsPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/ResultsPage.xaml -------------------------------------------------------------------------------- /IntelligentAPIsTester/ResultsPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/ResultsPage.xaml.cs -------------------------------------------------------------------------------- /IntelligentAPIsTester/Scripts/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/IntelligentAPIsTester/Scripts/script.ps1 -------------------------------------------------------------------------------- /License.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/License.md -------------------------------------------------------------------------------- /ObjectDetector/Assets/Yolo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/Assets/Yolo.cs -------------------------------------------------------------------------------- /ObjectDetector/IntelligentAPI_ObjectDetector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/IntelligentAPI_ObjectDetector.csproj -------------------------------------------------------------------------------- /ObjectDetector/IntelligentAPI_ObjectDetector.pri: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/IntelligentAPI_ObjectDetector.pri -------------------------------------------------------------------------------- /ObjectDetector/ObjectDetector.licenseheader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/ObjectDetector.licenseheader -------------------------------------------------------------------------------- /ObjectDetector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /ObjectDetector/Properties/IntelligentAPI_ObjectDetector.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/Properties/IntelligentAPI_ObjectDetector.rd.xml -------------------------------------------------------------------------------- /ObjectDetector/Scripts/script.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/Scripts/script.ps1 -------------------------------------------------------------------------------- /ObjectDetector/YOLOObjectDetector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/YOLOObjectDetector.cs -------------------------------------------------------------------------------- /ObjectDetector/Yolo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ObjectDetector/Yolo.cs -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/README.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /Windows.Toolkit.Common.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/Windows.Toolkit.Common.props -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/global.json -------------------------------------------------------------------------------- /nuget.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CommunityToolkit/Labs-IntelligentAPIs/HEAD/nuget.png --------------------------------------------------------------------------------