├── .gitignore ├── Examples ├── Cmdlets │ ├── ConvertTo-Thumbnail.ps1 │ ├── Get-Face.ps1 │ ├── Get-ImageAnalysis.ps1 │ ├── Get-ImageTag.ps1 │ ├── Get-ImageText.ps1 │ ├── New-CognitiveServiceAccount.ps1 │ ├── New-LocalConfiguration.ps1 │ ├── Search-Entity.ps1 │ ├── Search-Image.ps1 │ ├── Search-Web.ps1 │ ├── Test-AdultRacyContent.ps1 │ └── TextAnalytics.ps1 ├── Demo.ps1 ├── Start-Demo.ps1 └── test.ps1 ├── Install.ps1 ├── LICENSE ├── Media ├── BillGates.jpg ├── FeaturedImage.jpg ├── Install.jpg ├── PowershellGallery.jpg ├── Subscribe.gif ├── demo.gif ├── get-command.jpg └── jsnover.png ├── PSCognitiveService ├── Classes │ ├── BingEntitySearch.ps1 │ ├── BingImageSearch.ps1 │ ├── BingNewsSearch.ps1 │ ├── BingSearchV7.ps1 │ ├── ComputerVision.ps1 │ ├── ContentModerator.ps1 │ ├── Enum.ps1 │ ├── Face.ps1 │ ├── Hashtable.ps1 │ ├── TextAnalytics.ps1 │ ├── ValidateFile.ps1 │ ├── ValidateImage.ps1 │ └── ValidateMarket.ps1 ├── PSCognitiveService.psd1 ├── PSCognitiveService.psm1 ├── Private │ ├── Test-AzLogin.ps1 │ ├── Test-LocalConfiguration.ps1 │ └── Update-ProfileVariable.ps1 ├── Public │ ├── Bing │ │ ├── Search-Entity.ps1 │ │ ├── Search-Image.ps1 │ │ └── Search-Web.ps1 │ ├── ComputerVision │ │ ├── ConvertTo-Thumbnail.ps1 │ │ ├── Get-ImageAnalysis.ps1 │ │ ├── Get-ImageDescription.ps1 │ │ ├── Get-ImageTag.ps1 │ │ └── Get-Imagetext.ps1 │ ├── ContentModerator │ │ └── Test-AdultRacyContent.ps1 │ ├── Face │ │ ├── Get-Face.ps1 │ │ └── Test-FaceMatch.ps1 │ ├── New-CognitiveServiceAccount.ps1 │ ├── New-CognitiveServiceInstance.ps1 │ ├── New-LocalConfiguration.ps1 │ └── TextAnalytics │ │ ├── Get-KeyPhrase.ps1 │ │ ├── Get-Sentiment.ps1 │ │ └── Trace-Language.ps1 └── lib │ └── CoreCompat.System.Drawing.dll ├── README.md ├── Samples ├── BingImageSearch.ps1 ├── RenameImages.ps1 └── Start-Demo.ps1 ├── Tests ├── Function.Tests.ps1 ├── Media │ └── BillGates.jpg └── Project.Tests.ps1 ├── appveyor.yml ├── deploy.PSDeploy.ps1 └── psake.ps1 /.gitignore: -------------------------------------------------------------------------------- 1 | *.txt 2 | *.avi 3 | *.mp4 4 | -------------------------------------------------------------------------------- /Examples/Cmdlets/ConvertTo-Thumbnail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/ConvertTo-Thumbnail.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Get-Face.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Get-Face.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Get-ImageAnalysis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Get-ImageAnalysis.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Get-ImageTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Get-ImageTag.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Get-ImageText.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Get-ImageText.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/New-CognitiveServiceAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/New-CognitiveServiceAccount.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/New-LocalConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/New-LocalConfiguration.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Search-Entity.ps1: -------------------------------------------------------------------------------- 1 | Search-Entity -Text 'brad pitt' -verbose 2 | -------------------------------------------------------------------------------- /Examples/Cmdlets/Search-Image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Search-Image.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Search-Web.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Search-Web.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/Test-AdultRacyContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/Test-AdultRacyContent.ps1 -------------------------------------------------------------------------------- /Examples/Cmdlets/TextAnalytics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Cmdlets/TextAnalytics.ps1 -------------------------------------------------------------------------------- /Examples/Demo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Demo.ps1 -------------------------------------------------------------------------------- /Examples/Start-Demo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Examples/Start-Demo.ps1 -------------------------------------------------------------------------------- /Examples/test.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Install.ps1 -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/LICENSE -------------------------------------------------------------------------------- /Media/BillGates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/BillGates.jpg -------------------------------------------------------------------------------- /Media/FeaturedImage.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/FeaturedImage.jpg -------------------------------------------------------------------------------- /Media/Install.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/Install.jpg -------------------------------------------------------------------------------- /Media/PowershellGallery.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/PowershellGallery.jpg -------------------------------------------------------------------------------- /Media/Subscribe.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/Subscribe.gif -------------------------------------------------------------------------------- /Media/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/demo.gif -------------------------------------------------------------------------------- /Media/get-command.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/get-command.jpg -------------------------------------------------------------------------------- /Media/jsnover.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Media/jsnover.png -------------------------------------------------------------------------------- /PSCognitiveService/Classes/BingEntitySearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/BingEntitySearch.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/BingImageSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/BingImageSearch.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/BingNewsSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/BingNewsSearch.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/BingSearchV7.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/BingSearchV7.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/ComputerVision.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/ComputerVision.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/ContentModerator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/ContentModerator.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/Enum.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/Enum.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/Face.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/Face.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/Hashtable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/Hashtable.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/TextAnalytics.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/TextAnalytics.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/ValidateFile.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/ValidateFile.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/ValidateImage.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/ValidateImage.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Classes/ValidateMarket.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Classes/ValidateMarket.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/PSCognitiveService.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/PSCognitiveService.psd1 -------------------------------------------------------------------------------- /PSCognitiveService/PSCognitiveService.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/PSCognitiveService.psm1 -------------------------------------------------------------------------------- /PSCognitiveService/Private/Test-AzLogin.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Private/Test-AzLogin.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Private/Test-LocalConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Private/Test-LocalConfiguration.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Private/Update-ProfileVariable.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Private/Update-ProfileVariable.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/Bing/Search-Entity.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/Bing/Search-Entity.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/Bing/Search-Image.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/Bing/Search-Image.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/Bing/Search-Web.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/Bing/Search-Web.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/ComputerVision/ConvertTo-Thumbnail.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/ComputerVision/ConvertTo-Thumbnail.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/ComputerVision/Get-ImageAnalysis.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/ComputerVision/Get-ImageAnalysis.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/ComputerVision/Get-ImageDescription.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/ComputerVision/Get-ImageDescription.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/ComputerVision/Get-ImageTag.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/ComputerVision/Get-ImageTag.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/ComputerVision/Get-Imagetext.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/ComputerVision/Get-Imagetext.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/ContentModerator/Test-AdultRacyContent.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/ContentModerator/Test-AdultRacyContent.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/Face/Get-Face.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/Face/Get-Face.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/Face/Test-FaceMatch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/Face/Test-FaceMatch.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/New-CognitiveServiceAccount.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/New-CognitiveServiceAccount.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/New-CognitiveServiceInstance.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/New-CognitiveServiceInstance.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/New-LocalConfiguration.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/New-LocalConfiguration.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/TextAnalytics/Get-KeyPhrase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/TextAnalytics/Get-KeyPhrase.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/TextAnalytics/Get-Sentiment.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/TextAnalytics/Get-Sentiment.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/Public/TextAnalytics/Trace-Language.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/Public/TextAnalytics/Trace-Language.ps1 -------------------------------------------------------------------------------- /PSCognitiveService/lib/CoreCompat.System.Drawing.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/PSCognitiveService/lib/CoreCompat.System.Drawing.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/README.md -------------------------------------------------------------------------------- /Samples/BingImageSearch.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Samples/BingImageSearch.ps1 -------------------------------------------------------------------------------- /Samples/RenameImages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Samples/RenameImages.ps1 -------------------------------------------------------------------------------- /Samples/Start-Demo.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Samples/Start-Demo.ps1 -------------------------------------------------------------------------------- /Tests/Function.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Tests/Function.Tests.ps1 -------------------------------------------------------------------------------- /Tests/Media/BillGates.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Tests/Media/BillGates.jpg -------------------------------------------------------------------------------- /Tests/Project.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/Tests/Project.Tests.ps1 -------------------------------------------------------------------------------- /appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/appveyor.yml -------------------------------------------------------------------------------- /deploy.PSDeploy.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/deploy.PSDeploy.ps1 -------------------------------------------------------------------------------- /psake.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PrateekKumarSingh/PSCognitiveService/HEAD/psake.ps1 --------------------------------------------------------------------------------