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/concept-brand-detection.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
@@ -72,5 +72,5 @@ In some cases, the brand detector will pick up both the logo image and the styli
72
72
73
73
The brand detection feature is part of the [Analyze Image](https://westcentralus.dev.cognitive.microsoft.com/docs/services/5adf991815e1060e6355ad44/operations/56f91f2e778daf14a499e1fa) API. You can call this API through a native SDK or through REST calls. Include `Brands` in the **visualFeatures** query parameter. Then, when you get the full JSON response, simply parse the string for the contents of the `"brands"` section.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/concept-object-detection.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
@@ -95,5 +95,5 @@ It's important to note the limitations of object detection so you can avoid or m
95
95
96
96
The object detection feature is part of the [Analyze Image](https://westcentralus.dev.cognitive.microsoft.com/docs/services/5adf991815e1060e6355ad44/operations/56f91f2e778daf14a499e1fa) API. You can call this API through a native SDK or through REST calls. Include `Objects` in the **visualFeatures** query parameter. Then, when you get the full JSON response, simply parse the string for the contents of the `"objects"` section.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/csharp-sdk.md
+14-21Lines changed: 14 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -6,19 +6,12 @@ author: PatrickFarley
6
6
manager: nitinme
7
7
ms.service: cognitive-services
8
8
ms.subservice: computer-vision
9
-
ms.topic: quickstart
9
+
ms.topic: include
10
10
ms.date: 12/05/2019
11
11
ms.author: pafarley
12
12
---
13
13
14
-
# Quickstart: Computer Vision client library for .NET
15
-
16
-
Get started with the Computer Vision client library for .NET. Follow these steps to install the package and try out the example code for basic tasks. Computer Vision provides you with access to advanced algorithms for processing images and returning information.
17
-
18
-
Use the Computer Vision client library for .NET to:
19
-
20
-
* Analyze an image for tags, text description, faces, adult content, and more.
21
-
* Recognize printed and handwritten text with the Batch Read API.
The following code detects common objects in the image and prints them to the console. See [Object detection](../concept-object-detection.md) for more details.
160
+
The following code detects common objects in the image and prints them to the console. See [Object detection](../../concept-object-detection.md) for more details.
The following code detects corporate brands and logos in the image and prints them to the console. See [Brand detection](../concept-brand-detection.md) for more details.
166
+
The following code detects corporate brands and logos in the image and prints them to the console. See [Brand detection](../../concept-brand-detection.md) for more details.
The following code returns the detected faces in the image with their rectangle coordinates and select face attributes. See [Face detection](../concept-detecting-faces.md) for more details.
172
+
The following code returns the detected faces in the image with their rectangle coordinates and select face attributes. See [Face detection](../../concept-detecting-faces.md) for more details.
The following code prints the detected presence of adult content in the image. See [Adult, racy, gory content](../concept-detecting-adult-content.md) for more details.
178
+
The following code prints the detected presence of adult content in the image. See [Adult, racy, gory content](../../concept-detecting-adult-content.md) for more details.
The following code prints the detected color attributes in the image, like the dominant colors and accent color. See [Color schemes](../concept-detecting-color-schemes.md) for more details.
184
+
The following code prints the detected color attributes in the image, like the dominant colors and accent color. See [Color schemes](../../concept-detecting-color-schemes.md) for more details.
Computer Vision can use specialized models to do further analysis on images. See [Domain-specific content](../concept-detecting-domain-content.md) for more details.
190
+
Computer Vision can use specialized models to do further analysis on images. See [Domain-specific content](../../concept-detecting-domain-content.md) for more details.
198
191
199
192
The following code parses data about detected celebrities in the image.
200
193
@@ -257,13 +250,13 @@ dotnet run
257
250
258
251
If you want to clean up and remove a Cognitive Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it.
>[Computer Vision API reference (.NET)](https://docs.microsoft.com/dotnet/api/overview/azure/cognitiveservices/client/computervision?view=azure-dotnet)
267
260
268
-
*[What is Computer Vision?](../Home.md)
261
+
*[What is Computer Vision?](../../Home.md)
269
262
* The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-dotnet-sdk-samples/blob/master/documentation-samples/quickstarts/ComputerVision/Program.cs).
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/go-sdk.md
+14-21Lines changed: 14 additions & 21 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -7,19 +7,12 @@ author: PatrickFarley
7
7
manager: nitinme
8
8
ms.service: cognitive-services
9
9
ms.subservice: computer-vision
10
-
ms.topic: quickstart
10
+
ms.topic: include
11
11
ms.date: 01/27/2020
12
12
ms.author: pafarley
13
13
---
14
14
15
-
# Quickstart: Computer Vision client library for Go
16
-
17
-
Get started with the Computer Vision client library for Go. Follow these steps to install the package and try out the example code for basic tasks. Computer Vision provides you with access to advanced algorithms for processing images and returning information.
18
-
19
-
Use the Computer Vision client library for Go to:
20
-
21
-
* Analyze an image for tags, text description, faces, adult content, and more.
22
-
* Recognize printed and handwritten text with the Batch Read API.
@@ -139,31 +132,31 @@ The following function calls extract different visual features from the sample i
139
132
140
133
### Get image description
141
134
142
-
The following function gets the list of generated captions for the image. For more information about image description, see [Describe images](../concept-describing-images.md).
135
+
The following function gets the list of generated captions for the image. For more information about image description, see [Describe images](../../concept-describing-images.md).
The following function detects common objects in the image and prints them to the console. For more information, see [Object detection](../concept-object-detection.md).
153
+
The following function detects common objects in the image and prints them to the console. For more information, see [Object detection](../../concept-object-detection.md).
The following code detects corporate brands and logos in the image and prints them to the console. For more information, [Brand detection](../concept-brand-detection.md).
159
+
The following code detects corporate brands and logos in the image and prints them to the console. For more information, [Brand detection](../../concept-brand-detection.md).
167
160
168
161
First, declare a reference to a new image within your `main` function.
169
162
@@ -175,25 +168,25 @@ The following code defines the brand detection function.
175
168
176
169
### Detect faces
177
170
178
-
The following function returns the detected faces in the image with their rectangle coordinates and certain face attributes. For more information, see [Face detection](../concept-detecting-faces.md).
171
+
The following function returns the detected faces in the image with their rectangle coordinates and certain face attributes. For more information, see [Face detection](../../concept-detecting-faces.md).
The following function prints the detected presence of adult content in the image. For more information, see [Adult, racy, gory content](../concept-detecting-adult-content.md).
177
+
The following function prints the detected presence of adult content in the image. For more information, see [Adult, racy, gory content](../../concept-detecting-adult-content.md).
The following function prints the detected color attributes in the image, like the dominant colors and accent color. For more information, see [Color schemes](../concept-detecting-color-schemes.md).
183
+
The following function prints the detected color attributes in the image, like the dominant colors and accent color. For more information, see [Color schemes](../../concept-detecting-color-schemes.md).
Computer Vision can use specialized models to do further analysis on images. For more information, see [Domain-specific content](../concept-detecting-domain-content.md).
189
+
Computer Vision can use specialized models to do further analysis on images. For more information, see [Domain-specific content](../../concept-detecting-domain-content.md).
197
190
198
191
The following code parses data about detected celebrities in the image.
199
192
@@ -250,13 +243,13 @@ go run sample-app.go
250
243
251
244
If you want to clean up and remove a Cognitive Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it.
> [Computer Vision API reference (Go)](https://godoc.org/github.com/Azure/azure-sdk-for-go/services/cognitiveservices/v2.1/computervision)
260
253
261
-
*[What is Computer Vision?](../Home.md)
254
+
*[What is Computer Vision?](../../Home.md)
262
255
* The source code for this sample can be found on [GitHub](https://github.com/Azure-Samples/cognitive-services-quickstart-code/blob/master/go/ComputerVision/ComputerVisionQuickstart.go).
0 commit comments