You are here: Start » AVL.NET » Invoke.ReadText
Ready-to-use tool for reading text from images using the OCR technique.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void ReadText ( List<Avl.Region> inCharacters, Avl.OcrModel inOcrModel, float inMinScore, out string outText, List<Conditional<string>> outCharacters, List<float> outScores, out bool outIsTextValid )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inCharacters | System.Collections.Generic.List<Avl.Region> | Character regions. | ||
![]()  | inOcrModel | Avl.OcrModel | OCR model specific to a particular font. | ||
![]()  | inMinScore | float | <0.0f, 1.0f> | Minimal score of reading a character. | |
![]()  | outText | string | Read text. | ||
![]()  | outCharacters | System.Collections.Generic.List<Atl.Conditional<string>> | Array of characters. NIL indicates invalid read when inMinScore is set,. | ||
![]()  | outScores | System.Collections.Generic.List<float> | Reading scores for each character. | ||
![]()  | outIsTextValid | bool | Returns False if any character score is smaller than inMinScore. | 


