Skip to content

create_class_lut_svmCreateClassLutSvmCreateClassLutSvmcreate_class_lut_svmT_create_class_lut_svm🔗

Short description🔗

create_class_lut_svmCreateClassLutSvmCreateClassLutSvmcreate_class_lut_svmT_create_class_lut_svm — Create a look-up table using a Support-Vector-Machine to classify byte images.

Signature🔗

create_class_lut_svm( class_svm SVMHandle, attribute.name GenParamName, attribute.value GenParamValue, out class_lut ClassLUTHandle )void CreateClassLutSvm( const HTuple& SVMHandle, const HTuple& GenParamName, const HTuple& GenParamValue, HTuple* ClassLUTHandle )static void HOperatorSet.CreateClassLutSvm( HTuple SVMHandle, HTuple genParamName, HTuple genParamValue, out HTuple classLUTHandle )def create_class_lut_svm( svmhandle: HHandle, gen_param_name: Sequence[str], gen_param_value: Sequence[Union[str, int]] ) -> HHandle

Herror T_create_class_lut_svm( const Htuple SVMHandle, const Htuple GenParamName, const Htuple GenParamValue, Htuple* ClassLUTHandle )

void HClassLUT::HClassLUT( const HClassSvm& SVMHandle, const HTuple& GenParamName, const HTuple& GenParamValue )

public HClassLUT( HClassSvm SVMHandle, HTuple genParamName, HTuple genParamValue )

HClassLUT HClassSvm::CreateClassLutSvm( const HTuple& GenParamName, const HTuple& GenParamValue ) const

void HClassLUT::CreateClassLutSvm( const HClassSvm& SVMHandle, const HTuple& GenParamName, const HTuple& GenParamValue )

HClassLUT HClassSvm.CreateClassLutSvm( HTuple genParamName, HTuple genParamValue )

void HClassLUT.CreateClassLutSvm( HClassSvm SVMHandle, HTuple genParamName, HTuple genParamValue )

Description🔗

create_class_lut_svmCreateClassLutSvm generates a look-up table (LUT) ClassLUTHandleclassLUTHandleclass_luthandle using the data of a trained Support-Vector-Machine (SVM) SVMHandleSVMHandlesvmhandle to classify multi-channel byte images. By using this SVM-based LUT classifier the operator classify_image_class_svmClassifyImageClassSvm of the subsequent classification can be replaced by the operator classify_image_class_lutClassifyImageClassLut. The classification gets a major speed-up, because the estimation of the class in every image point is no longer necessary since every possible response of the SVM is stored in the LUT. For the generation of the LUT, the parameters NumFeaturesnumFeaturesnum_features, Preprocessingpreprocessingpreprocessing, and NumComponentsnumComponentsnum_components defined in the earlier called operator create_class_svmCreateClassSvm are important. In NumFeaturesnumFeaturesnum_features, the number of image channels the images must have to be classified is defined. By using the Preprocessingpreprocessingpreprocessing (see create_class_svmCreateClassSvm) the number of image channels can be transformed to NumComponentsnumComponentsnum_components. NumComponentsnumComponentsnum_components defines the length of the feature vector, which the classifier classify_class_svmClassifyClassSvm handles internally. Because of performance and disk space, the LUT is restricted to be maximal 33-dimensional. Since it replaces the operator classify_class_svmClassifyClassSvm, NumComponentsnumComponentsnum_components \(<=\) 33 must hold. If there is no preprocessing that reduces the number of image channels (NumFeaturesnumFeaturesnum_features \(=\) NumComponentsnumComponentsnum_components), all possible pixel values, which can occur in a byte image, are classified with classify_class_svmClassifyClassSvm. The returned classes are stored in the LUT. If there is a preprocessing that reduces the number of image channels (NumFeaturesnumFeaturesnum_features \(>\) NumComponentsnumComponentsnum_components), the preprocessing parameters of the SVM are stored in a separate structure of the LUT. To create the LUT, all transformed pixel values are classified with classify_class_svmClassifyClassSvm. The returned classes are stored in the LUT. Because of the discretization of the LUT, the accuracy of the LUT classifier could become lower than the accuracy of classify_image_class_svmClassifyImageClassSvm. With 'bit_depth'"bit_depth" and 'class_selection'"class_selection" the accuracy of the classification, the required storage, and the runtime needed to create the LUT can be controlled.

The following parameters of the SVM-based LUT classifier can be set with GenParamNamegenParamNamegen_param_name and GenParamValuegenParamValuegen_param_value:

  • 'bit_depth'"bit_depth": Number of bits used from the pixels. It controls the storage requirement of the LUT classifier and is bounded by the bit depth of the image ('bit_depth'"bit_depth" \(<=\) 88). If the bit depth of the LUT is smaller ('bit_depth'"bit_depth" \(<\) 88), the classes of multiple pixel combinations will be mapped to the same LUT entry, which can result in a lower accuracy for the classification. One of these clusters contains \(2^{NumComponents \cdot (8-bit\_depth)}\) pixel combinations, where NumComponentsnumComponentsnum_components denotes the dimension of the LUT, which is specified in create_class_svmCreateClassSvm. For example, for 'bit_depth'"bit_depth" \(=\) 77, NumComponentsnumComponentsnum_components \(=\) 33, the classes of 8 pixel combinations are mapped in the same LUT entry. The LUT requires at most \(2^{NumComponents \cdot bit\_depth+2}\) bytes of storage. For example, for NumComponentsnumComponentsnum_components \(=\) 33, 'bit_depth'"bit_depth" \(=\) 88 and NumClassesnumClassesnum_classes \(<\) 1616 (specified in create_class_svmCreateClassSvm), the LUT requires 8 MB of storage with internal storage optimization. If NumClassesnumClassesnum_classes \(=\) 11, the LUT requires only 2 MB of storage by using the full bit depth of the LUT. The runtime for the classification in classify_image_class_lutClassifyImageClassLut becomes minimal if the LUT fits into the cache.

    Suggested values: 66,77,88

    Default: 88

    Restriction: 'bit_depth'"bit_depth" \(>=\) 11, 'bit_depth'"bit_depth" \(<=\) 88.

  • 'class_selection'"class_selection": Method for the class selection for the LUT. Can be modified to control the accuracy and the runtime needed to create the LUT classifier. The value in 'class_selection'"class_selection" is ignored if the bit depth of the LUT is maximal, thus 'bit_depth'"bit_depth" \(=\) 88 holds. If the bit depth of the LUT is smaller ('bit_depth'"bit_depth" \(<\) 88), the classes of multiple pixel combinations will be mapped to the same LUT entry. One of these clusters contains \(2^{NumComponents \cdot (8-bit\_depth)}\) pixel combinations, where NumComponentsnumComponentsnum_components denotes the dimension of the LUT, which is specified in create_class_svmCreateClassSvm. By choosing 'class_selection'"class_selection" \(=\) 'best'"best", the class that appears most often in the cluster is stored in the LUT. For 'class_selection'"class_selection" \(=\) 'fast'"fast", only one pixel of the cluster, i.e., the pixel with the smallest value (component-wise), is classified. The returned class is stored in the LUT. In this case, the accuracy of the subsequent classification could become lower. On the other hand, the runtime needed to create the LUT can be reduced, which is proportional to the maximal needed storage of the LUT, which is defined with \(2^{NumComponents \cdot bit\_depth+2}\).

    List of values: 'fast'"fast", 'best'"best"

    Default: 'fast'"fast"

Execution information🔗

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

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

  • Automatically parallelized on internal data level.

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🔗

SVMHandleSVMHandlesvmhandle (input_control) class_svm → (handle)HTuple (HHandle)HClassSvm, HTuple (IntPtr)HHandleHtuple (handle)

SVM handle.

GenParamNamegenParamNamegen_param_name (input_control) attribute.name-array → (string)HTuple (HString)HTuple (string)Sequence[str]Htuple (char*)

Names of the generic parameters that can be adjusted for the LUT classifier creation.

Default: [][]
Suggested values: 'bit_depth', 'class_selection'"bit_depth", "class_selection"

GenParamValuegenParamValuegen_param_value (input_control) attribute.value-array → (string / integer)HTuple (HString / Hlong)HTuple (string / int / long)Sequence[Union[str, int]]Htuple (char* / Hlong)

Values of the generic parameters that can be adjusted for the LUT classifier creation.

Default: [][]
Suggested values: 8, 7, 6, 'fast', 'best'8, 7, 6, "fast", "best"

ClassLUTHandleclassLUTHandleclass_luthandle (output_control) class_lut → (handle)HTuple (HHandle)HClassLUT, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the LUT classifier.

Result🔗

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

Combinations with other operators🔗

Combinations

Possible predecessors

train_class_svmTrainClassSvm, read_class_svmReadClassSvm

Possible successors

classify_image_class_lutClassifyImageClassLut

Alternatives

create_class_lut_gmmCreateClassLutGmm, create_class_lut_knnCreateClassLutKnn, create_class_lut_mlpCreateClassLutMlp

See also

classify_image_class_lutClassifyImageClassLut, clear_class_lutClearClassLut

Module🔗

Foundation