You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/Tutorials/CSharpTutorial.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,14 +8,14 @@ manager: nolachar
8
8
ms.service: cognitive-services
9
9
ms.subservice: computer-vision
10
10
ms.topic: sample
11
-
ms.date: 04/17/2019
11
+
ms.date: 10/27/2021
12
12
ms.author: pafarley
13
13
ms.custom: "seodec18, devx-track-csharp"
14
14
---
15
15
16
16
# Sample: Explore an image processing app with C#
17
17
18
-
Explore a basic Windows application that uses Computer Vision to perform optical character recognition (OCR), create smart-cropped thumbnails, plus detect, categorize, tag and describe visual features, including faces, in an image. The below example lets you submit an image URL or a locally stored file. You can use this open source example as a template for building your own app for Windows using the Computer Vision API and Windows Presentation Foundation (WPF), a part of .NET Framework.
18
+
Explore a basic Windows application that uses Computer Vision to perform optical character recognition (OCR), create smart-cropped thumbnails, and detect, categorize, tag and describe visual features, including faces, in an image. The below example lets you submit an image URL or a locally stored file. You can use this open source example as a template for building your own app for Windows using the Computer Vision API and Windows Presentation Foundation (WPF), a part of the .NET Framework.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/concept-object-detection.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,14 +9,14 @@ manager: nitinme
9
9
ms.service: cognitive-services
10
10
ms.subservice: computer-vision
11
11
ms.topic: conceptual
12
-
ms.date: 04/17/2019
12
+
ms.date: 10/27/2021
13
13
ms.author: pafarley
14
14
ms.custom: seodec18
15
15
---
16
16
17
17
# Detect common objects in images
18
18
19
-
Object detection is similar to [tagging](concept-tagging-images.md), but the API returns the bounding box coordinates (in pixels) for each object found. For example, if an image contains a dog, cat and person, the Detect operation will list those objects together with their coordinates in the image. You can use this functionality to process the relationships between the objects in an image. It also lets you determine whether there are multiple instances of the same tag in an image.
19
+
Object detection is similar to [tagging](concept-tagging-images.md), but the API returns the bounding box coordinates (in pixels) for each object found in the image. For example, if an image contains a dog, cat and person, the Detect operation will list those objects with their coordinates in the image. You can use this functionality to process the relationships between the objects in an image. It also lets you determine whether there are multiple instances of the same object in an image.
20
20
21
21
The Detect API applies tags based on the objects or living things identified in the image. There is currently no formal relationship between the tagging taxonomy and the object detection taxonomy. At a conceptual level, the Detect API only finds objects and living things, while the Tag API can also include contextual terms like "indoor", which can't be localized with bounding boxes.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/language-support.md
+10-8Lines changed: 10 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -8,28 +8,29 @@ manager: nitinme
8
8
ms.service: cognitive-services
9
9
ms.subservice: computer-vision
10
10
ms.topic: conceptual
11
-
ms.date: 04/17/2019
11
+
ms.date: 10/27/2021
12
12
ms.author: pafarley
13
13
---
14
14
15
15
# Language support for Computer Vision
16
16
17
-
Some features of Computer Vision support multiple languages; any features not mentioned here only support English.
17
+
Some capabilities of Computer Vision support multiple languages; any capabilities not mentioned here only support English.
18
18
19
19
## Optical Character Recognition (OCR)
20
20
21
-
The Computer Vision OCR APIs support several languages. Read can extract text from images and documents with mixed languages, including same text line without requiring a language parameter. See the [Optical Character Recognition (OCR) overview](overview-ocr.md) for more information.
21
+
The Computer Vision OCR APIs support many languages. Read can extract text from images and documents with mixed languages, including from the same text line, without requiring a language parameter. See the [Optical Character Recognition (OCR) overview](overview-ocr.md) for more information.
22
22
23
23
24
24
> [!NOTE]
25
25
> **Language code optional**
26
26
>
27
-
> Read OCR's deeplearningbased universal models extract all multi-lingual text in your documents, including text lines with mixed languages, and do not require specifying a language code. Do not provide the language code as the parameter unless you are sure about the language and want to force the service to apply only the relevant model. Otherwise, the service may return incomplete and incorrect text.
27
+
> Read OCR's deep-learning-based universal models extract all multi-lingual text in your documents, including text lines with mixed languages, and do not require specifying a language code. Do not provide the language code as the parameter unless you are sure about the language and want to force the service to apply only the relevant model. Otherwise, the service may return incomplete and incorrect text.
28
28
29
-
See [How to specify the model version](./Vision-API-How-to-Topics/call-read-api.md#determine-how-to-process-the-data-optional) to use the preview languages and features. The preview model includes any enhancements to the currently GA version.
29
+
The preview model includes any enhancements to the current GA version of the API. See [How to specify the model version](./Vision-API-How-to-Topics/call-read-api.md#determine-how-to-process-the-data-optional) to use the preview languages and features.
30
30
31
31
### Handwritten languages
32
-
The following table lists the handwritten languages supported by Read.
32
+
33
+
The following table lists the languages supported by Read for handwritten text.
33
34
34
35
|Language| Language code (optional) | Read |
35
36
|:-----|:----:|:-----|
@@ -42,7 +43,8 @@ The following table lists the handwritten languages supported by Read.
42
43
|Spanish |`es`|✅ preview |
43
44
44
45
### Print languages
45
-
The following table lists the print languages supported by the OCR APIs.
46
+
47
+
The following table lists the languages supported by the OCR APIs for printed text.
46
48
47
49
|Language| Language code (optional) | Read | OCR |
48
50
|:-----|:----:|:-----|:---:|
@@ -174,7 +176,7 @@ The following table lists the print languages supported by the OCR APIs.
174
176
175
177
## Image analysis
176
178
177
-
Some actions of the [Analyze - Image](https://westcentralus.dev.cognitive.microsoft.com/docs/services/computer-vision-v3-1-ga/operations/56f91f2e778daf14a499f21b) API can return results in other languages, specified with the `language` query parameter. Other actions return results in English regardless of what language is specified, and others throw an exception for unsupported languages. Actions are specified with the `visualFeatures` and `details` query parameters; see the [Overview](overview-image-analysis.md) for a list of all the actions you can do with image analysis. Languages for tagging are only available in API version 3.2 or later.
179
+
Some features of the [Analyze - Image](https://westcentralus.dev.cognitive.microsoft.com/docs/services/computer-vision-v3-1-ga/operations/56f91f2e778daf14a499f21b) API can return results in other languages, specified with the `language` query parameter. Other actions return results in English regardless of what language is specified, and others throw an exception for unsupported languages. Actions are specified with the `visualFeatures` and `details` query parameters; see the [Overview](overview-image-analysis.md) for a list of all the actions you can do with image analysis. Languages for tagging are only available in API version 3.2 or later.
0 commit comments