Skip to content

Commit a48e27c

Browse files
committed
vision freshness
1 parent 9f6dcc7 commit a48e27c

File tree

7 files changed

+24
-22
lines changed

7 files changed

+24
-22
lines changed

articles/ai-services/computer-vision/how-to/call-analyze-image-40.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ author: PatrickFarley
88
ms.author: pafarley
99
ms.service: azure-ai-vision
1010
ms.topic: how-to
11-
ms.date: 08/01/2023
11+
ms.date: 06/01/2024
1212
ms.custom: references_regions, devx-track-python, devx-track-extended-java, devx-track-js
1313
zone_pivot_groups: programming-languages-computer-vision
1414
---
@@ -55,6 +55,5 @@ This article demonstrates how to call the Image Analysis 4.0 API to return infor
5555
- [C#](https://aka.ms/azsdk/image-analysis/samples/csharp)
5656
- [Python](https://aka.ms/azsdk/image-analysis/samples/python)
5757
- [Java](https://aka.ms/azsdk/image-analysis/samples/java)
58-
- [JavaScript](https://aka.ms/azsdk/image-analysis/samples/js)
59-
58+
- [JavaScript](https://aka.ms/azsdk/image-analysis/samples/js)
6059
* See the [REST API reference](https://aka.ms/vision-4-0-ref) to learn more about the API functionality.

articles/ai-services/computer-vision/how-to/shelf-modify-images.md

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,12 @@ author: PatrickFarley
66
manager: nitinme
77
ms.service: azure-ai-vision
88
ms.topic: how-to
9-
ms.date: 07/10/2023
10-
ms.author: ginle
9+
ms.date: 06/01/2024
10+
ms.author: pafarley
1111
ms.custom: references_regions, build-2023
1212
---
1313

14-
# Shelf Image Composition (preview)
14+
# Shelf image composition (preview)
1515

1616
Part of the Product Recognition workflow involves fixing and modifying the input images so the service can perform correctly.
1717

@@ -59,7 +59,7 @@ To run the image stitching operation on a set of images, follow these steps:
5959
1. Open a command prompt window.
6060
1. Paste your edited `curl` command from the text editor into the command prompt window, and then run the command.
6161
62-
## Examine the stitching response
62+
### Examine the stitching response
6363
6464
The API returns a `200` response, and the new file is downloaded to the location you specified.
6565
@@ -108,15 +108,12 @@ To correct the perspective distortion in the composite image, follow these steps
108108

109109
:::image type="content" source="../media/shelf/rectify.png" alt-text="Photo of a shelf with its four corners outlined.":::
110110

111-
> [!NOTE]
112-
> The brands shown in the images are not affiliated with Microsoft and do not indicate any form of endorsement of Microsoft or Microsoft products by the brand owners, or an endorsement of the brand owners or their products by Microsoft.
113-
114111
1. Replace `<your_filename>` with the name and extension of the file where you'd like to get the result (for example, `download.jpg`).
115112
1. Open a command prompt window.
116113
1. Paste your edited `curl` command from the text editor into the command prompt window, and then run the command.
117114
118115
119-
## Examine the rectification response
116+
### Examine the rectification response
120117
121118
The API returns a `200` response, and the new file is downloaded to the location you specified.
122119

articles/ai-services/computer-vision/includes/how-to-guides/analyze-image-40-js.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,10 @@ Alternatively, you can pass in the image as a data array. For example, read from
4545

4646
## Select visual features
4747

48-
The Analysis 4.0 API gives you access to all of the service's image analysis features. Choose which operations to do based on your own use case. See the [overview](/azure/ai-services/computer-vision/overview-image-analysis) for a description of each feature. The example in this section adds all of the available visual features, but for practical usage you likely need fewer.
48+
The Analysis 4.0 API gives you access to all of the service's image analysis features. Choose which operations to do based on your own use case. See the [Overview](/azure/ai-services/computer-vision/overview-image-analysis) for a description of each feature. The example in this section adds all of the available visual features, but for practical usage you likely need fewer.
49+
50+
> [!IMPORTANT]
51+
> The visual features [Captions](/java/api/com.azure.ai.vision.imageanalysis.models.visualfeatures#com-azure-ai-vision-imageanalysis-models-visualfeatures-caption) and [DenseCaptions](/java/api/com.azure.ai.vision.imageanalysis.models.visualfeatures#com-azure-ai-vision-imageanalysis-models-visualfeatures-dense-captions) are only supported in the following Azure regions: East US, France Central, Korea Central, North Europe, Southeast Asia, West Europe, West US.
4952
5053
[!code-javascript[](~/cognitive-services-quickstart-code/javascript/ComputerVision/4-0/how-to.js?name=snippet_features)]
5154

articles/ai-services/computer-vision/includes/how-to-guides/analyze-image-40-python.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ Alternatively, you can pass in the image as [bytes](https://docs.python.org/3/li
5151

5252
The Analysis 4.0 API gives you access to all of the service's image analysis features. Choose which operations to do based on your own use case. See the [overview](/azure/ai-services/computer-vision/overview-image-analysis) for a description of each feature. The example in this section adds all of the [available visual features](/python/api/azure-ai-vision-imageanalysis/azure.ai.vision.imageanalysis.models.visualfeatures), but for practical usage you likely need fewer.
5353

54+
> [!IMPORTANT]
55+
> The visual features [Captions](/java/api/com.azure.ai.vision.imageanalysis.models.visualfeatures#com-azure-ai-vision-imageanalysis-models-visualfeatures-caption) and [DenseCaptions](/java/api/com.azure.ai.vision.imageanalysis.models.visualfeatures#com-azure-ai-vision-imageanalysis-models-visualfeatures-dense-captions) are only supported in the following Azure regions: East US, France Central, Korea Central, North Europe, Southeast Asia, West Europe, West US.
56+
5457
[!code-python[](~/cognitive-services-quickstart-code/python/ComputerVision/4-0/how-to.py?name=snippet_features)]
5558

5659
<!--

articles/ai-services/computer-vision/includes/how-to-guides/analyze-image-40-rest.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,10 @@ Authentication is done by adding the HTTP request header **Ocp-Apim-Subscription
3232

3333
The code in this guide uses remote images referenced by URL. You may want to try different images on your own to see the full capability of the Image Analysis features.
3434

35-
35+
### Image URL
3636
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"}`. The **Content-Type** should be `application/json`.
3737

38+
### Image file
3839
To analyze a local image, you'd put the binary image data in the HTTP request body. The **Content-Type** should be `application/octet-stream` or `multipart/form-data`.
3940

4041

articles/ai-services/computer-vision/sdk/install-sdk.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ author: PatrickFarley
77
manager: nitinme
88
ms.service: azure-ai-vision
99
ms.topic: quickstart
10-
ms.date: 08/01/2023
10+
ms.date: 06/01/2024
1111
ms.author: pafarley
1212
ms.custom: devx-track-python, devx-track-csharp, devx-track-extended-java, devx-track-js, linux-related-content
1313
zone_pivot_groups: programming-languages-vision-40-sdk

articles/ai-services/computer-vision/sdk/overview-sdk.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@ author: PatrickFarley
77
manager: nitinme
88
ms.service: azure-ai-vision
99
ms.topic: overview
10-
ms.date: 08/01/2023
10+
ms.date: 06/01/2024
1111
ms.author: pafarley
1212
ms.custom: devx-track-csharp
1313
---
1414

1515
# Image Analysis SDK overview
1616

17-
The Image Analysis SDK (preview) provides a convenient way to access the Image Analysis service using [version 4.0 of the REST APIs](https://aka.ms/vision-4-0-ref).
17+
The Image Analysis SDK provides a convenient way to access the Image Analysis service using [version 4.0 of the REST API](https://aka.ms/vision-4-0-ref).
1818

1919
> [!IMPORTANT]
2020
> **Breaking Changes in SDK version 1.0.0-beta.1**
@@ -33,22 +33,22 @@ The Image Analysis SDK supports the following languages and platforms:
3333

3434
| Programming language | Quickstart | API Reference | Platform support |
3535
|----------------------|------------|-----------|------------------|
36-
| C# <sup>1</sup> | [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md?pivots=programming-language-csharp) | [reference](https://aka.ms/azsdk/image-analysis/ref-docs/csharp) | Windows, Linux, macOS |
36+
| C# | [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md?pivots=programming-language-csharp) | [reference](https://aka.ms/azsdk/image-analysis/ref-docs/csharp) | Windows, Linux, macOS |
3737
| Python | [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md?pivots=programming-language-python) | [reference](https://aka.ms/azsdk/image-analysis/ref-docs/python) | Windows, Linux, macOS |
3838
| Java | [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md?pivots=programming-language-java) | [reference](https://aka.ms/azsdk/image-analysis/ref-docs/java) | Windows, Linux, macOS |
3939
| JavaScript | [quickstart](../quickstarts-sdk/image-analysis-client-library-40.md?pivots=programming-language-js) | [reference](https://aka.ms/azsdk/image-analysis/ref-docs/js) | Windows, Linux, macOS |
4040

4141

4242
## GitHub samples
4343

44-
Numerous samples are available in the SDK repositories on GitHub.
44+
Numerous code samples are available in the SDK repositories on GitHub.
4545
- [C#](https://aka.ms/azsdk/image-analysis/samples/csharp)
4646
- [Python](https://aka.ms/azsdk/image-analysis/samples/python)
4747
- [Java](https://aka.ms/azsdk/image-analysis/samples/java)
4848
- [JavaScript](https://aka.ms/azsdk/image-analysis/samples/js)
4949

5050

51-
## Getting help
51+
## Help and support
5252

5353
If you need assistance using the Image Analysis SDK or would like to report a bug or suggest new features, open a GitHub issue in the respective SDK repo. The SDK development team monitors these issues.
5454
- [C#](https://github.com/Azure/azure-sdk-for-net/issues)
@@ -61,8 +61,7 @@ Before you create a new issue:
6161
* Find the sample closest to your scenario and run it to see if you see the same issue in the sample code.
6262

6363

64-
6564
## Next steps
6665

67-
- [Install the SDK](./install-sdk.md)
68-
- [Try the Image Analysis Quickstart](../quickstarts-sdk/image-analysis-client-library-40.md)
66+
- [Install the Image Analysis SDK](./install-sdk.md)
67+
- [Follow the Image Analysis Quickstart](../quickstarts-sdk/image-analysis-client-library-40.md)

0 commit comments

Comments
 (0)