Skip to content

Commit 68c9726

Browse files
committed
Fix URL
1 parent 25819cd commit 68c9726

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

articles/ai-services/computer-vision/concept-object-detection.md

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

9999
## Use the API
100100

101-
The object detection feature is part of the [Analyze Image](/rest/api/computervision/analyze-image/analyze-image?view=rest-computervision-v3.2&tabs=HTTP) 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, parse the string for the contents of the **objects** section.
101+
The object detection feature is part of the [Analyze Image](/rest/api/computervision/analyze-image/analyze-image) 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, parse the string for the contents of the **objects** section.
102102

103103
* [Quickstart: Image Analysis](./quickstarts-sdk/image-analysis-client-library.md?pivots=programming-language-csharp)

articles/ai-services/computer-vision/how-to/call-read-api.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ When using the Read operation, use the following values for the optional `model-
5151

5252
### Input language
5353

54-
By default, the service extracts all text from your images or documents including mixed languages. The [Read operation](/rest/api/computervision/read/read?view=rest-computervision-v3.2-preview&tabs=HTTP) has an optional request parameter for language. Only provide a language code if you want to force the document to be processed as that specific language. Otherwise, the service might return incomplete and incorrect text.
54+
By default, the service extracts all text from your images or documents including mixed languages. The [Read operation](/rest/api/computervision/read/read?view=rest-computervision-v3.2-preview&preserve-view=true) has an optional request parameter for language. Only provide a language code if you want to force the document to be processed as that specific language. Otherwise, the service might return incomplete and incorrect text.
5555

5656
### Natural reading order output (Latin languages only)
5757

@@ -71,7 +71,7 @@ You submit either a local image or a remote image to the Read API. For local, yo
7171

7272
`{"url":"http://example.com/images/test.jpg"}`
7373

74-
The Read API's [Read call](/rest/api/computervision/read/read?view=rest-computervision-v3.2-preview&tabs=HTTP) takes an image or PDF document as the input and extracts text asynchronously.
74+
The Read API's [Read call](/rest/api/computervision/read/read?view=rest-computervision-v3.2-preview&preserve-view=true) takes an image or PDF document as the input and extracts text asynchronously.
7575

7676
`https://{endpoint}/vision/v3.2/read/analyze[?language][&pages][&readingOrder]`
7777

@@ -89,7 +89,7 @@ The call returns with a response header field called `Operation-Location`. The `
8989

9090
## Get results from the service
9191

92-
The second step is to call the [Get Read Result](/rest/api/computervision/get-read-result/get-read-result?view=rest-computervision-v3.2-preview&tabs=HTTP) operation. This operation takes as input the operation ID that was created by the Read operation.
92+
The second step is to call the [Get Read Result](/rest/api/computervision/get-read-result/get-read-result?view=rest-computervision-v3.2-preview&preserve-view=true) operation. This operation takes as input the operation ID that was created by the Read operation.
9393

9494
`https://{endpoint}/vision/v3.2/read/analyzeResults/{operationId}`
9595

@@ -196,4 +196,4 @@ The response includes a classification of whether each line of text is in handwr
196196
## Related content
197197

198198
- [Quickstart: Azure AI Vision v3.2 GA Read](../quickstarts-sdk/client-library.md)
199-
- [Read 3.2 REST API reference](/rest/api/computervision/read/read?view=rest-computervision-v3.2-preview&tabs=HTTP)
199+
- [Read 3.2 REST API reference](/rest/api/computervision/read/read?view=rest-computervision-v3.2-preview&preserve-view=true)

0 commit comments

Comments
 (0)