You are here: Start » AVL.NET » AVS.RecognizeCharacters Method

AVS.RecognizeCharacters Method

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inCharacterRegionsSystem.Collections.Generic.IList<AvlNet.Region>Array of character regions to recognize.
inOcrModelAvlNet.OcrModelTrained OcrMlpModel used to recognize characters.
inDotPrintboolDot-printed characters preprocessing.
inCharacterSortingAvlNet.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<AvlNet.OcrCandidate>>Array of a character classification results and their score.

Function Overrides

See also