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
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/how-to/call-analyze-image-40.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,7 +21,7 @@ This article demonstrates how to call the Image Analysis 4.0 API to return infor
21
21
This guide assumes you have successfully followed the steps mentioned in the [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md) page. This means:
22
22
23
23
* You have <ahref="https://portal.azure.com/#create/Microsoft.CognitiveServicesComputerVision"title="created a Computer Vision resource"target="_blank">created a Computer Vision resource </a> and obtained a key and endpoint URL.
24
-
* If you're using the client SDK, you have the appropriate SDK package installed and you have a running quickstart application. You modify this quickstart application based on code examples here.
24
+
* If you're using the client SDK, you have the appropriate SDK package installed and you have a running [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md) application. You can modify this quickstart application based on code examples here.
25
25
* If you're using 4.0 REST API calls directly, you have successfully made a `curl.exe` call to the service (or used an alternative tool). You modify the `curl.exe` call based on the examples here.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/image-analysis-cpp-sdk-40.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: "Quickstart: Image Analysis 4.0 client library for .NET"
3
-
description: In this quickstart, get started with the Image Analysis 4.0 client library for .NET.
2
+
title: "Quickstart: Image Analysis 4.0 client SDK for .NET"
3
+
description: In this quickstart, get started with the Image Analysis 4.0 client SDK for .NET.
4
4
services: cognitive-services
5
5
author: PatrickFarley
6
6
manager: nitinme
@@ -14,7 +14,7 @@ ms.author: pafarley
14
14
15
15
<aname="HOLTop"></a>
16
16
17
-
Use the Image Analysis client library for C++ to analyze an image to read text and generate an image caption. This quickstart defines a function `AnalyzeImage()`, which uses the client object to analyze a remote image and print the results to the console.
17
+
Use the Image Analysis client SDK for C++ to analyze an image to read text and generate an image caption. This quickstart defines a function `AnalyzeImage()`, which uses the client object to analyze a remote image and print the results to the console.
Open Visual Studio, and under **Get started** select **Create a new project**. Set the template filters to _C++/Windows/Console_. Select **Console App** and choose **Next**. Update the project name to _ImageAnalysisQuickstart_ and choose **Create** to create the project.
42
42
43
-
### Install the client library
43
+
### Install the client SDK
44
44
45
-
Once you've created a new project, install the client library by right-clicking on the project solution in the **Solution Explorer** and selecting **Manage NuGet Packages**. In the package manager that opens select **Browse**, check **Include prerelease**, and search for `Azure.AI.Vision.ImageAnalysis`. Select **Install**.
45
+
Once you've created a new project, install the client SDK by right-clicking on the project solution in the **Solution Explorer** and selecting **Manage NuGet Packages**. In the package manager that opens select **Browse**, check **Include prerelease**, and search for `Azure.AI.Vision.ImageAnalysis`. Select **Install**.
46
46
47
47
#### [Linux](#tab/linux)
48
48
@@ -147,7 +147,7 @@ If you want to clean up and remove a Cognitive Services subscription, you can de
147
147
148
148
## Next steps
149
149
150
-
In this quickstart, you learned how to install the Image Analysis client library and make basic image analysis calls. Next, learn more about the Analysis 4.0 API features.
150
+
In this quickstart, you learned how to install the Image Analysis client SDK and make basic image analysis calls. Next, learn more about the Analysis 4.0 API features.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/image-analysis-csharp-sdk-40.md
+8-8Lines changed: 8 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
-
title: "Quickstart: Image Analysis client 4.0 library for .NET"
3
-
description: In this quickstart, get started with the Image Analysis 4.0 client library for .NET.
2
+
title: "Quickstart: Image Analysis client 4.0 SDK for .NET"
3
+
description: In this quickstart, get started with the Image Analysis 4.0 client SDK for .NET.
4
4
services: cognitive-services
5
5
author: PatrickFarley
6
6
manager: nitinme
@@ -14,7 +14,7 @@ ms.author: pafarley
14
14
15
15
<aname="HOLTop"></a>
16
16
17
-
Use the Image Analysis client library for C# to analyze an image to read text and generate an image caption. This quickstart defines a method `AnalyzeAsync()`, which uses the client object to analyze a remote image and print the results to the console.
17
+
Use the Image Analysis client SDK for C# to analyze an image to read text and generate an image caption. This quickstart defines a method `AnalyzeAsync()`, which uses the client object to analyze a remote image and print the results to the console.
Open Visual Studio, and under **Get started** select **Create a new project**. Set the template filters to _C#/All Platforms/Console_. Select **Console App** (command-line application that can run on .NET on Windows, Linux and macOS) and choose **Next**. Update the project name to _ImageAnalysisQuickstart_ and choose **Next**. Select **.NET 6.0** or above, and choose **Create** to create the project.
44
44
45
-
### Install the client library
45
+
### Install the client SDK
46
46
47
-
Once you've created a new project, install the client library by right-clicking on the project solution in the **Solution Explorer** and selecting **Manage NuGet Packages**. In the package manager that opens select **Browse**, check **Include prerelease**, and search for `Azure.AI.Vision.ImageAnalysis`. Select **Install**.
47
+
Once you've created a new project, install the client SDK by right-clicking on the project solution in the **Solution Explorer** and selecting **Manage NuGet Packages**. In the package manager that opens select **Browse**, check **Include prerelease**, and search for `Azure.AI.Vision.ImageAnalysis`. Select **Install**.
48
48
49
49
#### [CLI](#tab/cli)
50
50
@@ -70,9 +70,9 @@ Build succeeded.
70
70
...
71
71
```
72
72
73
-
### Install the client library
73
+
### Install the client SDK
74
74
75
-
Within the application directory, install the Computer Vision client library for .NET with the following command:
75
+
Within the application directory, install the Computer Vision client SDK for .NET with the following command:
@@ -192,7 +192,7 @@ If you want to clean up and remove a Cognitive Services subscription, you can de
192
192
193
193
## Next steps
194
194
195
-
In this quickstart, you learned how to install the Image Analysis client library and make basic image analysis calls. Next, learn more about the Analysis 4.0 API features.
195
+
In this quickstart, you learned how to install the Image Analysis client SDK and make basic image analysis calls. Next, learn more about the Analysis 4.0 API features.
@@ -38,7 +38,7 @@ Use the Image Analysis client library for Python to analyze a remote image to re
38
38
## Analyze Image
39
39
40
40
1. Open a command prompt where you want the new project, and create a new file named *quickstart.py*.
41
-
1. Run this command to install the Azure AI Vision client library:
41
+
1. Run this command to install the Azure AI Vision client SDK:
42
42
43
43
```console
44
44
python -m pip install azure-ai-vision
@@ -141,7 +141,7 @@ If you want to clean up and remove a Cognitive Services subscription, you can de
141
141
142
142
## Next steps
143
143
144
-
In this quickstart, you learned how to install the Image Analysis client library and make basic image analysis calls. Next, learn more about the Analysis 4.0 API features.
144
+
In this quickstart, you learned how to install the Image Analysis client SDK and make basic image analysis calls. Next, learn more about the Analysis 4.0 API features.
145
145
146
146
> [!div class="nextstepaction"]
147
147
>[Call the Analyze Image 4.0 API](../../how-to/call-analyze-image-40.md)
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/quickstarts-sdk/image-analysis-client-library-40.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
title: "Quickstart: Image Analysis 4.0"
3
3
titleSuffix: Azure Cognitive Services
4
-
description: Learn how to tag images in your application using Image Analysis 4.0 through a native client library in the language of your choice.
4
+
description: Learn how to tag images in your application using Image Analysis 4.0 through a native client SDK in the language of your choice.
5
5
services: cognitive-services
6
6
author: PatrickFarley
7
7
manager: nitinme
@@ -18,7 +18,7 @@ keywords: computer vision, computer vision service
18
18
19
19
# Quickstart: Image Analysis 4.0
20
20
21
-
Get started with the Image Analysis 4.0 REST API or client library to set up a basic image analysis application. The Image Analysis service provides you with AI algorithms for processing images and returning information on their visual features. Follow these steps to install a package to your application and try out the sample code.
21
+
Get started with the Image Analysis 4.0 REST API or client SDK to set up a basic image analysis application. The Image Analysis service provides you with AI algorithms for processing images and returning information on their visual features. Follow these steps to install a package to your application and try out the sample code.
0 commit comments