Skip to content

Commit 415670d

Browse files
committed
fix links
1 parent 2b2ce55 commit 415670d

File tree

8 files changed

+8
-8
lines changed

8 files changed

+8
-8
lines changed

articles/ai-services/computer-vision/faq.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ sections:
2929
- question: |
3030
The service is throwing an error because my image file is too large. How can I work around this?
3131
answer: |
32-
The file size limit for most Azure AI Vision features is 4 MB for the 3.2 version of the API and 20MB for the 4.0 version, and the client library SDKs can handle files up to 6 MB. For more information, see the [Image Analysis input limits](overview-image-analysis.md#image-requirements).
32+
The file size limit for most Azure AI Vision features is 4 MB for the 3.2 version of the API and 20MB for the 4.0 version, and the client library SDKs can handle files up to 6 MB. For more information, see the [Image Analysis input limits](overview-image-analysis.md#input-requirements).
3333
3434
- question: |
3535
Can I send multiple images in a single API call to the Azure AI Vision service?

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Where we used this helper function to read the value of an environment variable:
3535

3636
## Select the image to analyze
3737

38-
You can select an image by providing a publicly accessible image URL, a local image file name, or by copying the image into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#image-requirements) for supported image formats.
38+
You can select an image by providing a publicly accessible image URL, a local image file name, or by copying the image into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#input-requirements) for supported image formats.
3939

4040
### Image URL
4141

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Start by creating a [ImageAnalysisClient](/dotnet/api/azure.ai.vision.imageanaly
2929

3030
## Select the image to analyze
3131

32-
You can select an image by providing a publicly accessible image URL, or by passing binary data to the SDK. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#image-requirements) for supported image formats.
32+
You can select an image by providing a publicly accessible image URL, or by passing binary data to the SDK. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#input-requirements) for supported image formats.
3333

3434
### Image URL
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Start by creating an [ImageAnalysisClient](/java/api/com.azure.ai.vision.imagean
2929

3030
## Select the image to analyze
3131

32-
You can select an image by providing a publicly accessible image URL, or by reading image data into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#image-requirements) for supported image formats.
32+
You can select an image by providing a publicly accessible image URL, or by reading image data into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#input-requirements) for supported image formats.
3333

3434
### Image URL
3535

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Start by creating a **ImageAnalysisClient** object. For example:
2828

2929
## Select the image to analyze
3030

31-
You can select an image by providing a publicly accessible image URL, or by reading image data into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#image-requirements) for supported image formats.
31+
You can select an image by providing a publicly accessible image URL, or by reading image data into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#input-requirements) for supported image formats.
3232

3333
### Image URL
3434

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ Start by creating an [ImageAnalysisClient](/python/api/azure-ai-vision-imageanal
3232

3333
## Select the image to analyze
3434

35-
You can select an image by providing a publicly accessible image URL, or by reading image data into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#image-requirements) for supported image formats.
35+
You can select an image by providing a publicly accessible image URL, or by reading image data into the SDK's input buffer. See [Image requirements](../../overview-image-analysis.md?tabs=4-0#input-requirements) for supported image formats.
3636

3737
### Image URL
3838

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ List of common errors:
307307
* For a binary image data, **Content-Type** should be `application/octet-stream` or `multipart/form-data`
308308
* `InvalidRequest - Either 'features' or 'model-name' needs to be specified in the query parameter`.
309309
* `InvalidRequest - Image format is not valid`
310-
* `InvalidImageFormat - Image format is not valid`. See the [Image requirements](/azure/ai-services/computer-vision/overview-image-analysis?tabs=4-0#image-requirements) section for supported image formats.
310+
* `InvalidImageFormat - Image format is not valid`. See the [Image requirements](/azure/ai-services/computer-vision/overview-image-analysis?tabs=4-0#input-requirements) section for supported image formats.
311311
* `InvalidRequest - Analyze query is invalid`
312312
* `NotSupportedVisualFeature - Specified feature type is not valid`. Make sure the **features** query string has a valid value.
313313
* `NotSupportedLanguage - The input language is not supported`. Make sure the **language** query string has a valid value for the selected visual feature, based on the [following table](https://aka.ms/cv-languages).

articles/ai-services/computer-vision/includes/image-analysis-error-codes-40.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ List of common errors:
9595
* For a binary image data, **Content-Type** should be `application/octet-stream` or `multipart/form-data`
9696
* `InvalidRequest - Either 'features' or 'model-name' needs to be specified in the query parameter`.
9797
* `InvalidRequest - Image format is not valid`
98-
* `InvalidImageFormat - Image format is not valid`. See the [Image requirements](../overview-image-analysis.md?tabs=4-0#image-requirements) section for supported image formats.
98+
* `InvalidImageFormat - Image format is not valid`. See the [Image requirements](../overview-image-analysis.md?tabs=4-0#input-requirements) section for supported image formats.
9999
* `InvalidRequest - Analyze query is invalid`
100100
* `NotSupportedVisualFeature - Specified feature type is not valid`. Make sure the **features** query string has a valid value.
101101
* `NotSupportedLanguage - The input language is not supported`. Make sure the **language** query string has a valid value for the selected visual feature, based on the [following table](https://aka.ms/cv-languages).

0 commit comments

Comments
 (0)