Lab 1 - Computer Vision
Analyze an image by sending it to the Computer Vision API
1. Setup the Azure Resources
Create a resource group
az group create --name <resource-group-name> --location <location>Create the Cognitive Service Account
az cognitiveservices account create --name <name> --kind ComputerVision --sku F0 --resource-group <resource-group-name> --location <location> --yesGet the endpoint details from the Cognitive Service Account
az cognitiveservices account keys list --name <name> --resource-group <resource-group-name> At this point you should have:
2. Test the Computer Vision Endpoint
Using the command line
Using a web interface
3. Conclusion
Resources
Last updated