2017-11-16 8 views

답변

0

Cognitive Services Azure CLI 설명서에서인지 서비스 관리 방법에 대한 자세한 내용을 확인할 수 있습니다. 푸른 정부와 평소처럼

:

여기에 어떻게 가야에 대한 간단한 예제는 다음과 같습니다

az cloud set --name AzureUSGovernment 
az login 

az group create -n cogstestrg -l usgovvirginia 

az cognitiveservices account create -n cogstestcv -g cogstestrg --sku S0 --kind ComputerVision -l usgovvirginia 

az cognitiveservices account show -g cogstestrg -n cogstestcv 

az cognitiveservices account keys list -g cogstestrg -n cogstestcv 

#Make sure you REPLACE_WITH_YOUR_KEY in the curl command below using the key from the previous command 
curl -v -X POST "https://virginia.api.cognitive.microsoft.us/vision/v1.0/analyze?visualFeatures=Categories,Description,Color&details=&language=en" -H "Content-Type: application/json" -H "Ocp-Apim-Subscription-Key: REPLACE_WITH_YOUR_KEY" --data-ascii "{'url' : 'http://upload.wikimedia.org/wikipedia/commons/3/3c/Shaki_waterfall.jpg'}"