You are here: Start » AVL.NET » Function Reference » Computer Vision » Optical Character Recognition » AVL.MakeCharacterSamples

AVL.MakeCharacterSamples

Creates training font samples from the provided regions.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void MakeCharacterSamples
(
	IList<AvlNet.Region> inCharacterRegions,
	string inCharacters,
	IList<AvlNet.CharacterSample> outCharacterSamples
)

Parameters

Name Type Range Default Description
inCharacterRegionsSystem.Collections.Generic.IList<AvlNet.Region>Array of character regions.
inCharactersstringCharacter that should be assigned to corresponding regions.
outCharacterSamplesSystem.Collections.Generic.IList<AvlNet.CharacterSample>Array of CharacterSamples.

Description

The operation creates a set of character samples used to train OcrMlpModel in the TrainOcr_MLP filter. Consecutive letters in inCharacters correspond to consecutive regions in inCharacterRegions.

Remarks

The length of inCharacters must be equal to the size of the inCharacterRegions array.

To read more about how to use OCR technique, refer to Machine Vision Guide: Optical Character Recognition

Errors

List of possible exceptions:

Error type Description
DomainError At least a single character should be provided in MakeCharacterSamples.
DomainError Parameter inCharacterRegions contains empty region in MakeCharacterSamples.
DomainError The size of inCharacterRegions and the length of inCharacters are not equal in MakeCharacterSamples.

See also