Skip to content

Commit 827523e

Browse files
committed
update terms
1 parent f09d688 commit 827523e

File tree

5 files changed

+22
-22
lines changed

5 files changed

+22
-22
lines changed

articles/cognitive-services/Computer-vision/how-to/call-analyze-image-40.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This article demonstrates how to call the Image Analysis 4.0 API to return infor
2121
This guide assumes you have successfully followed the steps mentioned in the [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md) page. This means:
2222

2323
* You have <a href="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.
2525
* 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.
2626

2727
## Authenticate against the service

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/image-analysis-cpp-sdk-40.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
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.
44
services: cognitive-services
55
author: PatrickFarley
66
manager: nitinme
@@ -14,7 +14,7 @@ ms.author: pafarley
1414

1515
<a name="HOLTop"></a>
1616

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.
1818

1919
[Reference documentation](/cpp/cognitive-services/vision) | Packages (NuGet): [ImageAnalysis](https://www.nuget.org/packages/Azure.AI.Vision.ImageAnalysis) | [Samples](https://github.com/Azure-Samples/azure-ai-vision-sdk)
2020

@@ -40,9 +40,9 @@ Create a new C++ application.
4040

4141
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.
4242

43-
### Install the client library
43+
### Install the client SDK
4444

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**.
4646

4747
#### [Linux](#tab/linux)
4848

@@ -147,7 +147,7 @@ If you want to clean up and remove a Cognitive Services subscription, you can de
147147

148148
## Next steps
149149

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.
151151

152152

153153
> [!div class="nextstepaction"]

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/image-analysis-csharp-sdk-40.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
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.
44
services: cognitive-services
55
author: PatrickFarley
66
manager: nitinme
@@ -14,7 +14,7 @@ ms.author: pafarley
1414

1515
<a name="HOLTop"></a>
1616

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.
1818

1919
[Reference documentation](/dotnet/api/azure.ai.vision.imageanalysis
2020
) | Packages (NuGet): [ImageAnalysis](https://www.nuget.org/packages/Azure.AI.Vision.ImageAnalysis) | [Samples](https://github.com/Azure-Samples/azure-ai-vision-sdk)
@@ -42,9 +42,9 @@ Create a new C# application.
4242

4343
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.
4444

45-
### Install the client library
45+
### Install the client SDK
4646

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**.
4848

4949
#### [CLI](#tab/cli)
5050

@@ -70,9 +70,9 @@ Build succeeded.
7070
...
7171
```
7272

73-
### Install the client library
73+
### Install the client SDK
7474

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:
7676

7777
```dotnet
7878
dotnet add package Azure.AI.Vision.ImageAnalysis --prerelease
@@ -192,7 +192,7 @@ If you want to clean up and remove a Cognitive Services subscription, you can de
192192

193193
## Next steps
194194

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.
196196

197197

198198
> [!div class="nextstepaction"]

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/image-analysis-python-sdk-40.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
2-
title: "Quickstart: Image Analysis 4.0 client library for Python"
3-
description: Get started with the Image Analysis 4.0 client library for Python with this quickstart.
2+
title: "Quickstart: Image Analysis 4.0 client SDK for Python"
3+
description: Get started with the Image Analysis 4.0 client SDK for Python with this quickstart.
44
services: cognitive-services
55
author: PatrickFarley
66
manager: nitinme
@@ -14,7 +14,7 @@ ms.author: pafarley
1414

1515
<a name="HOLTop"></a>
1616

17-
Use the Image Analysis client library for Python to analyze a remote image to read text and generate an image caption.
17+
Use the Image Analysis client SDK for Python to analyze a remote image to read text and generate an image caption.
1818

1919
[Reference documentation](/python/api/azure-ai-vision) | [Package (PyPi)](https://pypi.org/project/azure-ai-vision/) | [Samples](https://github.com/Azure-Samples/azure-ai-vision-sdk)
2020

@@ -38,7 +38,7 @@ Use the Image Analysis client library for Python to analyze a remote image to re
3838
## Analyze Image
3939

4040
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:
4242

4343
```console
4444
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
141141

142142
## Next steps
143143

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.
145145

146146
> [!div class="nextstepaction"]
147147
>[Call the Analyze Image 4.0 API](../../how-to/call-analyze-image-40.md)

articles/cognitive-services/Computer-vision/quickstarts-sdk/image-analysis-client-library-40.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: "Quickstart: Image Analysis 4.0"
33
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.
55
services: cognitive-services
66
author: PatrickFarley
77
manager: nitinme
@@ -18,7 +18,7 @@ keywords: computer vision, computer vision service
1818

1919
# Quickstart: Image Analysis 4.0
2020

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.
2222

2323
::: zone pivot="programming-language-csharp"
2424

0 commit comments

Comments
 (0)