Skip to content

Commit fb92767

Browse files
committed
docs to learn URL
1 parent 6abbfcb commit fb92767

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

articles/cognitive-services/Computer-vision/how-to/background-removal.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This guide assumes you've already [created a Computer Vision resource](https://p
2323
2424
## Submit data to the service
2525

26-
When calling the **Image Analysis - Segment** API, you specify the image's URL by formatting the request body like this: `{"url":"https://docs.microsoft.com/azure/cognitive-services/computer-vision/images/windows-kitchen.jpg"}`.
26+
When calling the **Image Analysis - Segment** API, you specify the image's URL by formatting the request body like this: `{"url":"https://learn.microsoft.com/azure/cognitive-services/computer-vision/images/windows-kitchen.jpg"}`.
2727

2828
To analyze a local image, you'd put the binary image data in the HTTP request body.
2929

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ The code in this guide uses remote images referenced by URL. You may want to try
2727
In your main class, save a reference to the URL of the image you want to analyze.
2828

2929
```csharp
30-
var imageSource = VisionSource.FromUrl(new Uri("https://docs.microsoft.com/azure/cognitive-services/computer-vision/images/windows-kitchen.jpg"));
30+
var imageSource = VisionSource.FromUrl(new Uri("https://learn.microsoft.com/azure/cognitive-services/computer-vision/images/windows-kitchen.jpg"));
3131
```
3232

3333
> [!TIP]
@@ -59,7 +59,7 @@ auto imageSource = VisionSource::FromUrl("https://learn.microsoft.com/azure/cogn
5959
6060
#### [REST](#tab/rest)
6161

62-
When analyzing a remote image, you specify the image's URL by formatting the request body like this: `{"url":"https://docs.microsoft.com/azure/cognitive-services/computer-vision/images/windows-kitchen.jpg"}`.
62+
When analyzing a remote image, you specify the image's URL by formatting the request body like this: `{"url":"https://learn.microsoft.com/azure/cognitive-services/computer-vision/images/windows-kitchen.jpg"}`.
6363

6464
To analyze a local image, you'd put the binary image data in the HTTP request body.
6565

0 commit comments

Comments
 (0)