You are here: Start » FIL.NET » FIS.RecognizeCharacters Method

FIS.RecognizeCharacters Method

Classifies input regions into characters. Based on the Multi-Layer Perceptron model.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void RecognizeCharacters
(
	IList<FilNet.Region> inCharacterRegions,
	FilNet.OcrModel inOcrModel,
	bool inDotPrint,
	FilNet.CharacterSortingOrder inCharacterSorting,
	out string outCharacters,
	IList<float> outScores,
	IList<List<FilNet.OcrCandidate>> outCandidates
)

Parameters

Name Type Range Default Description
inCharacterRegionsSystem.Collections.Generic.IList<FilNet.Region>Array of character regions to recognize.
inOcrModelFilNet.OcrModelTrained OcrMlpModel used to recognize characters.
inDotPrintboolDot-printed characters preprocessing.
inCharacterSortingFilNet.CharacterSortingOrderLeftToRightSorting order of input characters. Default value: LeftToRight.
outCharactersstringResult of characters recognition.
outScoresSystem.Collections.Generic.IList<float>Classification result score.
outCandidatesSystem.Collections.Generic.IList<System.Collections.Generic.List<FilNet.OcrCandidate>>Array of a character classification results and their score.

Function Overrides

See also