You are here: Start » AVL.NET » AVL.InitOcr_SVM_Deprecated(float?, float, float, bool, AvlNet.Size, AvlNet.CharacterFeatures, AvlNet.OcrSvmModel)

AVL.InitOcr_SVM_Deprecated(float?, float, float, bool, AvlNet.Size, AvlNet.CharacterFeatures, AvlNet.OcrSvmModel)

Creates an OCR model based on support vector machines classifier.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax


public static void InitOcr_SVM_Deprecated(
	float? inKernelGamma,
	float inRegularizationConstant,
	float inStopEpsilon,
	bool inUseShrinkingHeuristics,
	AvlNet.Size inNormalizationSize,
	AvlNet.CharacterFeatures inCharacterFeatures,
	out AvlNet.OcrSvmModel outOcrModel
)

Parameters

inKernelGamma
Type: System.Nullable<System.Single>
Gamma parameter for RBF kernel, or null.
inRegularizationConstant
Type: System.Single
Preventing overfitting
inStopEpsilon
Type: System.Single
Epsilon for stopping criterion
inUseShrinkingHeuristics
Type: System.Boolean
Heuristics may speed up computations
inNormalizationSize
Type: AvlNet.Size
The character size after normalization
inCharacterFeatures
Type: AvlNet.CharacterFeatures
Character features used to identify characters
outOcrModel
Type: AvlNet.OcrSvmModel
Result OcrSvmModel used to recognize characters

See also