You are here: Start » FIL.NET » Invoke.ReadText
Ready-to-use tool for reading text from images using the OCR technique.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void ReadText ( List<Fil.Region> inCharacters, Fil.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<Fil.Region> | Character regions. | ||
![]() | inOcrModel | Fil.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<Ftl.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 ad score smaller than inMinScore. |