Read text with the Computer Vision service Flashcards

1
Q

Read text with the Computer Vision service

A

The ability for computer systems to process written or printed text is an area of artificial intelligence (AI) where computer vision intersects with natural language processing. You need computer vision capabilities to “read” the text, and then you need natural language processing capabilities to make sense of it.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

OCR

A

The basic foundation of processing printed text is optical character recognition (OCR), in which a model can be trained to recognize individual shapes as letters, numerals, punctuation, or other elements of text.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

Uses of OCR

A
  1. note taking
  2. digitizing forms, such as medical records or historical documents
  3. scanning printed or handwritten checks for bank deposits
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

Azure resources for Computer Vision

A
  1. Computer Vision: A specific resource for the Computer Vision service. Use this resource type if you don’t intend to use any other cognitive services, or if you want to track utilization and costs for your Computer Vision resource separately.
  2. Cognitive Services: A general cognitive services resource that includes Computer Vision along with many other cognitive services; such as Text Analytics, Translator Text, and others. Use this resource type if you plan to use multiple cognitive services and want to simplify administration and development.

Whichever type of resource you choose to create, it will provide two pieces of information that you will need to use it:

A key that is used to authenticate client applications.
An endpoint that provides the HTTP address at which your resource can be accessed.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

The Read API

A

The Computer Vision service provides one application programming interface (APIs) that you can use to read text in images: the Read API.

Because the Read API can work with large documents, it works asynchronously so as not to block your application while it is reading the content and returning results to your application.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

to use the Read API, your application must use a three-step process:

A
  1. Submit an image to the API, and retrieve an operation ID in response.
  2. Use the operation ID to check on the status of the image analysis operation, and wait until it has completed.
  3. Retrieve the results of the operation.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly