You are here: Start » FIL.NET » Invoke.ReadText

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
inCharactersSystem.Collections.Generic.List<Fil.Region>Character regions.
inOcrModelFil.OcrModelOCR model specific to a particular font.
inMinScorefloat<0.0f, 1.0f>Minimal score of reading a character.
outTextstringRead text.
outCharactersSystem.Collections.Generic.List<Ftl.Conditional<string>>Array of characters. NIL indicates invalid read when inMinScore is set,.
outScoresSystem.Collections.Generic.List<float>Reading scores for each character.
outIsTextValidboolReturns False if any ad score smaller than inMinScore.

See also