Skip to content

Commit ec0838b

Browse files
authored
Merge pull request #88021 from PatrickFarley/comvis-qss
[cog serv] Comvis qss
2 parents 091d395 + 56fe158 commit ec0838b

File tree

13 files changed

+419
-837
lines changed

13 files changed

+419
-837
lines changed

.openpublishing.redirection.json

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41581,6 +41581,21 @@
4158141581
"redirect_url": "https://github.com/Azure-Samples/cognitive-services-quickstart-code/tree/master/php/ComputerVision/use-domain-model",
4158241582
"redirect_document_id": false
4158341583
},
41584+
{
41585+
"source_path": "articles/cognitive-services/Computer-vision/quickstarts-sdk/csharp-analyze-sdk.md",
41586+
"redirect_url": "/azure/cognitive-services/Computer-vision/quickstarts-sdk/csharp-sdk",
41587+
"redirect_document_id": false
41588+
},
41589+
{
41590+
"source_path": "articles/cognitive-services/Computer-vision/quickstarts-sdk/csharp-hand-text-sdk.md",
41591+
"redirect_url": "/azure/cognitive-services/Computer-vision/quickstarts-sdk/csharp-sdk",
41592+
"redirect_document_id": false
41593+
},
41594+
{
41595+
"source_path": "articles/cognitive-services/Computer-vision/quickstarts-sdk/csharp-thumb-sdk.md",
41596+
"redirect_url": "/azure/cognitive-services/Computer-vision/quickstarts-sdk/csharp-sdk",
41597+
"redirect_document_id": false
41598+
},
4158441599
{
4158541600
"source_path": "articles/cognitive-services/Content-Moderator/Review-Tool-User-Guide/Upload-Images.md",
4158641601
"redirect_url": "/azure/cognitive-services/content-moderator",

articles/cognitive-services/Computer-vision/Home.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,6 @@ As with all of the Cognitive Services, developers using the Computer Vision serv
7272

7373
Get started with Computer Vision by following a quickstart guide:
7474

75-
- [Quickstart: Analyze an image](quickstarts-sdk/csharp-analyze-sdk.md)
76-
- [Quickstart: Extract handwritten text](quickstarts-sdk/csharp-hand-text-sdk.md)
77-
- [Quickstart: Generate a thumbnail](quickstarts-sdk/csharp-thumb-sdk.md)
75+
- [Quickstart: Computer Vision .NET SDK](quickstarts-sdk/csharp-sdk.md)
76+
- [Quickstart: Computer Vision Python SDK](quickstarts-sdk/python-sdk.md)
77+
- [Quickstart: Computer Vision Java SDK](quickstarts-sdk/java-sdk.md)

articles/cognitive-services/Computer-vision/concept-brand-detection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,5 +72,5 @@ In some cases, the brand detector will pick up both the logo image and the styli
7272

7373
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.
7474

75-
* [Quickstart: Analyze an image (.NET SDK)](./quickstarts-sdk/csharp-analyze-sdk.md)
75+
* [Quickstart: Computer Vision .NET SDK](./quickstarts-sdk/csharp-sdk.md)
7676
* [Quickstart: Analyze an image (REST API)](./quickstarts/csharp-analyze.md)

articles/cognitive-services/Computer-vision/concept-object-detection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,5 +95,5 @@ It's important to note the limitations of object detection so you can avoid or m
9595

9696
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.
9797

98-
* [Quickstart: Analyze an image (.NET SDK)](./quickstarts-sdk/csharp-analyze-sdk.md)
98+
* [Quickstart: Computer Vision .NET SDK)](./quickstarts-sdk/csharp-sdk.md)
9999
* [Quickstart: Analyze an image (REST API)](./quickstarts/csharp-analyze.md)

articles/cognitive-services/Computer-vision/index.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ landingContent:
4040
- linkListType: quickstart
4141
links:
4242
- text: Using the .NET SDK
43-
url: quickstarts-sdk/csharp-hand-text-sdk.md
43+
url: quickstarts-sdk/csharp-sdk.md
4444
- text: Using the Python SDK
4545
url: quickstarts-sdk/python-sdk.md
4646

@@ -54,7 +54,7 @@ landingContent:
5454
- linkListType: quickstart
5555
links:
5656
- text: Using the .NET SDK
57-
url: quickstarts-sdk/csharp-analyze-sdk.md
57+
url: quickstarts-sdk/csharp-sdk.md
5858
- text: Using the Python SDK
5959
url: quickstarts-sdk/python-sdk.md
6060
- text: Using the Java SDK
@@ -70,7 +70,7 @@ landingContent:
7070
- linkListType: quickstart
7171
links:
7272
- text: Using the .NET SDK
73-
url: quickstarts-sdk/csharp-analyze-sdk.md
73+
url: quickstarts-sdk/csharp-sdk.md
7474
- text: Using the Python SDK
7575
url: quickstarts-sdk/python-sdk.md
7676
- text: Using the Java SDK
@@ -101,6 +101,8 @@ landingContent:
101101
url: concept-detecting-faces.md
102102
- linkListType: quickstart
103103
links:
104+
- text: Using the .NET SDK
105+
url: quickstarts-sdk/csharp-sdk.md
104106
- text: Using the Python SDK
105107
url: quickstarts-sdk/python-sdk.md
106108
- text: Using the Java SDK

articles/cognitive-services/Computer-vision/quickstarts-sdk/csharp-analyze-sdk.md

Lines changed: 0 additions & 168 deletions
This file was deleted.

0 commit comments

Comments
 (0)