You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -80,9 +80,8 @@ The following classes and interfaces handle some of the major features of the Co
80
80
81
81
|Name|Description|
82
82
|---|---|
83
-
|[ComputerVisionClient]()| This class is needed for all Computer Vision functionality. You instantiate it with your subscription information, and you use it to do most image operations.|
84
-
|[ComputerVisionClientExtensions]()| This class contains additional methods for the **ComputerVisionClient**.|
85
-
|[VisualFeatureTypes]()| This enum defines the different types of image analysis that can be done in a standard Analyze operation. You specify a set of VisualFeatureTypes values depending on your needs. |
83
+
|[ComputerVisionClient](https://docs.microsoft.com/javascript/api/@azure/cognitiveservices-computervision/computervisionclient?view=azure-node-latest)| This class is needed for all Computer Vision functionality. You instantiate it with your subscription information, and you use it to do most image operations.|
84
+
|[VisualFeatureTypes](https://docs.microsoft.com/javascript/api/@azure/cognitiveservices-computervision/visualfeaturetypes?view=azure-node-latest)| This enum defines the different types of image analysis that can be done in a standard Analyze operation. You specify a set of **VisualFeatureTypes** values depending on your needs. |
86
85
87
86
## Code examples
88
87
@@ -98,13 +97,13 @@ Create variables for your resource's Azure endpoint and key. If you created the
Instantiate a client with your endpoint and key. Create a [ApiKeyCredentials](https://docs.microsoft.com/python/api/msrest/msrest.authentication.apikeycredentials?view=azure-python) object with your key and endpoint, and use it to create a [ComputerVisionClient]() object.
100
+
Instantiate a client with your endpoint and key. Create a [ApiKeyCredentials](https://docs.microsoft.com/python/api/msrest/msrest.authentication.apikeycredentials?view=azure-python) object with your key and endpoint, and use it to create a [ComputerVisionClient](https://docs.microsoft.com/javascript/api/@azure/cognitiveservices-computervision/computervisionclient?view=azure-node-latest) object.
The code in this section analyzes remote images to extract various visual features. You can do these operations as part of the **analyzeImage** method of the client object, or you can call them using individual methods. See the [reference documentation](https://docs.microsoft.com/javascript/api/overview/azure/cognitiveservices/computervision) for details.
106
+
The code in this section analyzes remote images to extract various visual features. You can do these operations as part of the **analyzeImage** method of the client object, or you can call them using individual methods. See the [reference documentation](https://docs.microsoft.com/javascript/api/@azure/cognitiveservices-computervision/?view=azure-node-latest) for details.
108
107
109
108
> [!NOTE]
110
109
> You can also analyze a local image. See the sample code on [GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/javascript/ComputerVision/ComputerVisionQuickstart.js) for scenarios involving local images.
@@ -260,7 +259,7 @@ If you want to clean up and remove a Cognitive Services subscription, you can de
260
259
## Next steps
261
260
262
261
> [!div class="nextstepaction"]
263
-
>[Computer Vision API reference (Node.js)](https://docs.microsoft.com/javascript/api/overview/azure/cognitiveservices/computervision)
262
+
>[Computer Vision API reference (Node.js)](https://docs.microsoft.com/javascript/api/@azure/cognitiveservices-computervision/?view=azure-node-latest)
264
263
265
264
*[What is the Computer Vision API?](../Home.md)
266
265
* The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/javascript/ComputerVision/ComputerVisionQuickstart.js).
0 commit comments