You are here: Start » AVL.NET » Invoke.SplitRegionIntoExactlyNCharacters

Invoke.SplitRegionIntoExactlyNCharacters

Splits the input region into a fixed-size array of regions corresponding to individual characters.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void SplitRegionIntoExactlyNCharacters
(
	Avl.Region inRegion,
	int inCharacterCount,
	int inCharacterSpacing,
	float inProjectionSmooth,
	Conditional<List<Avl.Region>> outRegions,
	Diagnostic<List<Avl.Region>> diagClasses,
	Diagnostic<Avl.Profile> diagProjection
)

Parameters

Name Type Range Default Description
inRegionAvl.RegionRegion which contains characters.
inCharacterCountint<1, INF>Character count in provided region.
inCharacterSpacingint<0, INF>Spacing size between characters.
inProjectionSmoothfloat<0.0f, INF>1.0fProjection smoothing value used to remove noises from character region. Default value: 1.0f.
outRegionsAtl.Conditional<System.Collections.Generic.List<Avl.Region>>Output array of regions containing separated characters.
diagClassesAvl.Diagnostic<System.Collections.Generic.List<Avl.Region>>Regions that contain location of split characters.
diagProjectionAvl.Diagnostic<Avl.Profile>Profile of region projection used to distinguish characters.

See also