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

AVL.SplitRegionIntoMultipleCharacters

Splits the input region into an array of regions corresponding to individual characters.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void SplitRegionIntoMultipleCharacters
(
	AvlNet.Region inRegion,
	float inProjectionSmooth,
	int inCharacterWidth,
	IList<AvlNet.Region> outRegions
)

Parameters

Name Type Range Default Description
inRegionAvlNet.RegionInput region containing characters.
inProjectionSmoothfloat<0.0f, INF>1.0fValue of smooth applied to region projection before splitting into separated characters. Default value: 1.0f.
inCharacterWidthint<0, INF>15Single character width. Default value: 15.
outRegionsSystem.Collections.Generic.IList<AvlNet.Region>Array or regions containing single characters.

Examples

Input region.

Result of the filter's usage.

Function Overrides

See also