Skip to content

create_ocr_class_svmCreateOcrClassSvmCreateOcrClassSvmcreate_ocr_class_svmT_create_ocr_class_svm🔗

Short description🔗

create_ocr_class_svmCreateOcrClassSvmCreateOcrClassSvmcreate_ocr_class_svmT_create_ocr_class_svm — Create an OCR classifier using a support vector machine.

Signature🔗

create_ocr_class_svm( integer WidthCharacter, integer HeightCharacter, string Interpolation, string Features, string Characters, string KernelType, real KernelParam, real Nu, string Mode, string Preprocessing, integer NumComponents, out ocr_svm OCRHandle )void CreateOcrClassSvm( const HTuple& WidthCharacter, const HTuple& HeightCharacter, const HTuple& Interpolation, const HTuple& Features, const HTuple& Characters, const HTuple& KernelType, const HTuple& KernelParam, const HTuple& Nu, const HTuple& Mode, const HTuple& Preprocessing, const HTuple& NumComponents, HTuple* OCRHandle )static void HOperatorSet.CreateOcrClassSvm( HTuple widthCharacter, HTuple heightCharacter, HTuple interpolation, HTuple features, HTuple characters, HTuple kernelType, HTuple kernelParam, HTuple nu, HTuple mode, HTuple preprocessing, HTuple numComponents, out HTuple OCRHandle )def create_ocr_class_svm( width_character: int, height_character: int, interpolation: str, features: MaybeSequence[str], characters: Sequence[str], kernel_type: str, kernel_param: float, nu: float, mode: str, preprocessing: str, num_components: int ) -> HHandle

Herror T_create_ocr_class_svm( const Htuple WidthCharacter, const Htuple HeightCharacter, const Htuple Interpolation, const Htuple Features, const Htuple Characters, const Htuple KernelType, const Htuple KernelParam, const Htuple Nu, const Htuple Mode, const Htuple Preprocessing, const Htuple NumComponents, Htuple* OCRHandle )

void HOCRSvm::HOCRSvm( Hlong WidthCharacter, Hlong HeightCharacter, const HString& Interpolation, const HTuple& Features, const HTuple& Characters, const HString& KernelType, double KernelParam, double Nu, const HString& Mode, const HString& Preprocessing, Hlong NumComponents )

void HOCRSvm::HOCRSvm( Hlong WidthCharacter, Hlong HeightCharacter, const HString& Interpolation, const HString& Features, const HTuple& Characters, const HString& KernelType, double KernelParam, double Nu, const HString& Mode, const HString& Preprocessing, Hlong NumComponents )

void HOCRSvm::HOCRSvm( Hlong WidthCharacter, Hlong HeightCharacter, const char* Interpolation, const char* Features, const HTuple& Characters, const char* KernelType, double KernelParam, double Nu, const char* Mode, const char* Preprocessing, Hlong NumComponents )

void HOCRSvm::HOCRSvm( Hlong WidthCharacter, Hlong HeightCharacter, const wchar_t* Interpolation, const wchar_t* Features, const HTuple& Characters, const wchar_t* KernelType, double KernelParam, double Nu, const wchar_t* Mode, const wchar_t* Preprocessing, Hlong NumComponents ) (Windows only)

public HOCRSvm( int widthCharacter, int heightCharacter, string interpolation, HTuple features, HTuple characters, string kernelType, double kernelParam, double nu, string mode, string preprocessing, int numComponents )

public HOCRSvm( int widthCharacter, int heightCharacter, string interpolation, string features, HTuple characters, string kernelType, double kernelParam, double nu, string mode, string preprocessing, int numComponents )

void HOCRSvm::CreateOcrClassSvm( Hlong WidthCharacter, Hlong HeightCharacter, const HString& Interpolation, const HTuple& Features, const HTuple& Characters, const HString& KernelType, double KernelParam, double Nu, const HString& Mode, const HString& Preprocessing, Hlong NumComponents )

void HOCRSvm::CreateOcrClassSvm( Hlong WidthCharacter, Hlong HeightCharacter, const HString& Interpolation, const HString& Features, const HTuple& Characters, const HString& KernelType, double KernelParam, double Nu, const HString& Mode, const HString& Preprocessing, Hlong NumComponents )

void HOCRSvm::CreateOcrClassSvm( Hlong WidthCharacter, Hlong HeightCharacter, const char* Interpolation, const char* Features, const HTuple& Characters, const char* KernelType, double KernelParam, double Nu, const char* Mode, const char* Preprocessing, Hlong NumComponents )

void HOCRSvm::CreateOcrClassSvm( Hlong WidthCharacter, Hlong HeightCharacter, const wchar_t* Interpolation, const wchar_t* Features, const HTuple& Characters, const wchar_t* KernelType, double KernelParam, double Nu, const wchar_t* Mode, const wchar_t* Preprocessing, Hlong NumComponents ) (Windows only)

void HOCRSvm.CreateOcrClassSvm( int widthCharacter, int heightCharacter, string interpolation, HTuple features, HTuple characters, string kernelType, double kernelParam, double nu, string mode, string preprocessing, int numComponents )

void HOCRSvm.CreateOcrClassSvm( int widthCharacter, int heightCharacter, string interpolation, string features, HTuple characters, string kernelType, double kernelParam, double nu, string mode, string preprocessing, int numComponents )

Description🔗

create_ocr_class_svmCreateOcrClassSvm creates an OCR classifier that uses a support vector machine (SVM). The handle of the OCR classifier is returned in OCRHandleOCRHandleocrhandle.

For a description on how an SVM works, see create_class_svmCreateClassSvm. create_ocr_class_svmCreateOcrClassSvm creates an SVM for classification with the classification mode given by Modemodemode. The length of the feature vector of the SVM (NumFeaturesnumFeaturesnum_features in create_class_svmCreateClassSvm) is determined from the features that are used for the OCR, which are passed in Featuresfeaturesfeatures. The features are described below. The kernel is parametrized with KernelTypekernelTypekernel_type, KernelParamkernelParamkernel_param and Nununu like in create_class_svmCreateClassSvm. The number of classes of the SVM (NumClassesnumClassesnum_classes in create_class_svmCreateClassSvm) is determined from the names of the characters to be used in the OCR, which are passed in Characterscharacterscharacters. As described with create_class_svmCreateClassSvm, the parameters Preprocessingpreprocessingpreprocessing and NumComponentsnumComponentsnum_components can be used to specify a preprocessing of the data (i.e., the feature vectors). For the sake of numerical stability, Preprocessingpreprocessingpreprocessing can typically be set to 'normalization'"normalization". In order to speed up classification time, 'principal_components'"principal_components" or 'canonical_variates'"canonical_variates" can be used, as the number of input features can be significantly reduced without deterioration of the recognition rate.

The features to be used for the classification are determined by Featuresfeaturesfeatures. Featuresfeaturesfeatures can contain a tuple of feature names. Each of these feature names results in one or more features to be calculated for the classifier. Some of the feature names compute gray value features (e.g., 'pixel_invar'"pixel_invar"). Because a classifier requires a constant number of features (input variables), a character to be classified is transformed to a standard size, which is determined by WidthCharacterwidthCharacterwidth_character and HeightCharacterheightCharacterheight_character. The interpolation to be used for the transformation is determined by Interpolationinterpolationinterpolation. It has the same meaning as in affine_trans_imageAffineTransImage. The interpolation should be chosen such that no aliasing effects occur in the transformation. For most applications, Interpolationinterpolationinterpolation \(=\) 'constant'"constant" should be used. It should be noted that the size of the transformed character is not chosen too large, because the generalization properties of the classifier may become bad for large sizes. In particular, for large sizes small segmentation errors will have a large influence on the computed features if gray value features are used. This happens because segmentation errors will change the smallest enclosing rectangle of the regions, thus the character is zoomed differently than the characters in the training set. In most applications, sizes between 6x8 and 10x14 should be used.

The parameter Featuresfeaturesfeatures can contain the following feature names for the classification of the characters.

After the classifier has been created, it is trained using trainf_ocr_class_svmTrainfOcrClassSvm. After this, the classifier can be saved using write_ocr_class_svmWriteOcrClassSvm. Alternatively, the classifier can be used immediately after training to classify characters using do_ocr_single_class_svmDoOcrSingleClassSvm or do_ocr_multi_class_svmDoOcrMultiClassSvm.

A comparison of SVM and the multi-layer perceptron (MLP) (see create_ocr_class_mlpCreateOcrClassMlp) typically shows that SVMs are generally faster at training, especially for huge training sets, and achieve slightly better recognition rates than MLPs. The MLP is faster at classification and should therefore be preferred in time critical applications. Please note that this guideline assumes optimal tuning of the parameters.

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

  • Processed without parallelization.

This operator returns a handle. Note that the state of an instance of this handle type may be changed by specific operators even though the handle is used as an input parameter by those operators.

Parameters🔗

WidthCharacterwidthCharacterwidth_character (input_control) integer → (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Width of the rectangle to which the gray values of the segmented character are zoomed.

Default: 88
Suggested values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 201, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 20
Value range: 4 ≤ WidthCharacter ≤ 20

HeightCharacterheightCharacterheight_character (input_control) integer → (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Height of the rectangle to which the gray values of the segmented character are zoomed.

Default: 1010
Suggested values: 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 201, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 14, 16, 20
Value range: 4 ≤ HeightCharacter ≤ 20

Interpolationinterpolationinterpolation (input_control) string → (string)HTuple (HString)HTuple (string)strHtuple (char*)

Interpolation mode for the zooming of the characters.

Default: 'constant'"constant"
List of values: 'bicubic', 'bilinear', 'constant', 'nearest_neighbor', 'weighted'"bicubic", "bilinear", "constant", "nearest_neighbor", "weighted"

Featuresfeaturesfeatures (input_control) string(-array) → (string)HTuple (HString)HTuple (string)MaybeSequence[str]Htuple (char*)

Features to be used for classification.

Default: 'default'"default"
List of values: 'anisometry', 'chord_histo', 'compactness', 'convexity', 'cooc', 'default', 'foreground', 'foreground_grid_16', 'foreground_grid_9', 'gradient_8dir', 'height', 'moments_central', 'moments_gray_plane', 'moments_region_2nd_invar', 'moments_region_2nd_rel_invar', 'moments_region_3rd_invar', 'num_connect', 'num_holes', 'num_runs', 'phi', 'pixel', 'pixel_binary', 'pixel_invar', 'projection_horizontal', 'projection_horizontal_invar', 'projection_vertical', 'projection_vertical_invar', 'ratio', 'width', 'zoom_factor'"anisometry", "chord_histo", "compactness", "convexity", "cooc", "default", "foreground", "foreground_grid_16", "foreground_grid_9", "gradient_8dir", "height", "moments_central", "moments_gray_plane", "moments_region_2nd_invar", "moments_region_2nd_rel_invar", "moments_region_3rd_invar", "num_connect", "num_holes", "num_runs", "phi", "pixel", "pixel_binary", "pixel_invar", "projection_horizontal", "projection_horizontal_invar", "projection_vertical", "projection_vertical_invar", "ratio", "width", "zoom_factor"

Characterscharacterscharacters (input_control) string-array → (string)HTuple (HString)HTuple (string)Sequence[str]Htuple (char*)

All characters of the character set to be read.

Default: ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"]

KernelTypekernelTypekernel_type (input_control) string → (string)HTuple (HString)HTuple (string)strHtuple (char*)

The kernel type.

Default: 'rbf'"rbf"
List of values: 'linear', 'polynomial_homogeneous', 'polynomial_inhomogeneous', 'rbf'"linear", "polynomial_homogeneous", "polynomial_inhomogeneous", "rbf"

KernelParamkernelParamkernel_param (input_control) real → (real)HTuple (double)HTuple (double)floatHtuple (double)

Additional parameter for the kernel function.

Default: 0.020.02
Suggested values: 0.01, 0.02, 0.05, 0.1, 0.50.01, 0.02, 0.05, 0.1, 0.5

Nununu (input_control) real → (real)HTuple (double)HTuple (double)floatHtuple (double)

Regularization constant of the SVM.

Default: 0.050.05
Suggested values: 0.0001, 0.001, 0.01, 0.05, 0.1, 0.2, 0.30.0001, 0.001, 0.01, 0.05, 0.1, 0.2, 0.3
Restriction: Nu > 0.0 && Nu < 1.0

Modemodemode (input_control) string → (string)HTuple (HString)HTuple (string)strHtuple (char*)

The mode of the SVM.

Default: 'one-versus-one'"one-versus-one"
List of values: 'one-versus-all', 'one-versus-one'"one-versus-all", "one-versus-one"

Preprocessingpreprocessingpreprocessing (input_control) string → (string)HTuple (HString)HTuple (string)strHtuple (char*)

Type of preprocessing used to transform the feature vectors.

Default: 'normalization'"normalization"
List of values: 'canonical_variates', 'none', 'normalization', 'principal_components'"canonical_variates", "none", "normalization", "principal_components"

NumComponentsnumComponentsnum_components (input_control) integer → (integer)HTuple (Hlong)HTuple (int / long)intHtuple (Hlong)

Preprocessing parameter: Number of transformed features (ignored for Preprocessingpreprocessingpreprocessing \(=\) 'none'"none" and Preprocessingpreprocessingpreprocessing \(=\) 'normalization'"normalization").

Default: 1010
Suggested values: 1, 2, 3, 4, 5, 8, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 1001, 2, 3, 4, 5, 8, 10, 15, 20, 30, 40, 50, 60, 70, 80, 90, 100
Restriction: NumComponents >= 1

OCRHandleOCRHandleocrhandle (output_control) ocr_svm → (handle)HTuple (HHandle)HOCRSvm, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the OCR classifier.

Example🔗

(HDevelop)

read_image (Image, 'letters')
* Segment the image.
binary_threshold(Image,&Region, 'otsu', 'dark', &UsedThreshold)\;
dilation_circle (Region, RegionDilation, 3.5)
connection (RegionDilation, ConnectedRegions)
intersection (ConnectedRegions, Region, RegionIntersection)
sort_region (RegionIntersection, Characters, 'character', 'true', 'row')
* Generate the training file.
count_obj (Characters, Number)
Classes := []
for J := 0 to 25 by 1
    Classes := [Classes,gen_tuple_const(20,chr(ord('a')+J))]
endfor
Classes := [Classes,gen_tuple_const(20,'.')]
write_ocr_trainf (Characters, Image, Classes, 'letters.trf')
* Generate and train the classifier.
read_ocr_trainf_names ('letters.trf', CharacterNames, CharacterCount)
create_ocr_class_svm (8, 10, 'constant', 'default', CharacterNames, \
                      'rbf', 0.01, 0.01, 'one-versus-all', \
                      'principal_components', 10, OCRHandle)
trainf_ocr_class_svm (OCRHandle, 'letters.trf', 0.001, 'default')
* Re-classify the characters in the image.
do_ocr_multi_class_svm (Characters, Image, OCRHandle, Class)

Result🔗

If the parameters are valid the operator create_ocr_class_svmCreateOcrClassSvm returns the value 2 (H_MSG_TRUE). If necessary, an exception is raised.

Combinations with other operators🔗

Combinations

Possible successors

trainf_ocr_class_svmTrainfOcrClassSvm

Alternatives

create_ocr_class_mlpCreateOcrClassMlp

See also

do_ocr_single_class_svmDoOcrSingleClassSvm, do_ocr_multi_class_svmDoOcrMultiClassSvm, clear_ocr_class_svmClearOcrClassSvm, create_class_svmCreateClassSvm, train_class_svmTrainClassSvm, classify_class_svmClassifyClassSvm

Module🔗

OCR/OCV