Skip to content

get_params_ocr_class_svmGetParamsOcrClassSvmGetParamsOcrClassSvmget_params_ocr_class_svmT_get_params_ocr_class_svm🔗

Short description🔗

get_params_ocr_class_svmGetParamsOcrClassSvmGetParamsOcrClassSvmget_params_ocr_class_svmT_get_params_ocr_class_svm — Return the parameters of an OCR classifier.

Signature🔗

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

def get_params_ocr_class_svm_s( ocrhandle: HHandle ) -> Tuple[int, int, str, str, Sequence[str], str, float, float, str, str, int]Herror T_get_params_ocr_class_svm( const Htuple OCRHandle, Htuple* WidthCharacter, Htuple* HeightCharacter, Htuple* Interpolation, Htuple* Features, Htuple* Characters, Htuple* KernelType, Htuple* KernelParam, Htuple* Nu, Htuple* Mode, Htuple* Preprocessing, Htuple* NumComponents )

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

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

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

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

Description🔗

get_params_ocr_class_svmGetParamsOcrClassSvm returns the parameters of an OCR classifier that were specified when the classifier was created with create_ocr_class_svmCreateOcrClassSvm. This is particularly useful if the classifier was read with read_ocr_class_svmReadOcrClassSvm. The output of get_params_ocr_class_svmGetParamsOcrClassSvm can, for example, be used to check whether a character to be read is contained in the classifier. For a description of the parameters, see create_ocr_class_svmCreateOcrClassSvm.

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.

Parameters🔗

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

Handle of the OCR classifier.

WidthCharacterwidthCharacterwidth_character (output_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.

HeightCharacterheightCharacterheight_character (output_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.

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

Interpolation mode for the zooming of the characters.

Featuresfeaturesfeatures (output_control) string(-array) → (string)HTuple (HString)HTuple (string)Sequence[str]Htuple (char*)

Features to be used for classification.

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

Characters of the character set to be read.

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

The kernel type.

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

Additional parameters for the kernel function.

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

Regularization constant of the SVM.

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

The mode of the SVM.

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

Type of preprocessing used to transform the feature vectors.

NumComponentsnumComponentsnum_components (output_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").

Result🔗

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

Combinations with other operators🔗

Combinations

Possible predecessors

create_ocr_class_svmCreateOcrClassSvm, read_ocr_class_svmReadOcrClassSvm

Possible successors

do_ocr_single_class_svmDoOcrSingleClassSvm, do_ocr_multi_class_svmDoOcrMultiClassSvm

See also

trainf_ocr_class_svmTrainfOcrClassSvm, get_params_class_svmGetParamsClassSvm

Module🔗

OCR/OCV