read_class_svm🔗
Short description🔗
read_class_svm — Read a support vector machine from a file.
Signature🔗
read_class_svm( filename.read FileName, out class_svm SVMHandle )
Description🔗
read_class_svm reads a support vector machine (SVM) that has
been stored with write_class_svm. Since the training of an
SVM can consume a relatively long time, the SVM is typically trained
in an offline process and written to a file with
write_class_svm. In the online process the SVM is read
with read_class_svm and subsequently used for classification
with classify_class_svm.
The default HALCON file extension for the SVM classifier is 'gsc'.
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🔗
FileName (input_control) filename.read → (string)
File name.
File extension: .gsc
SVMHandle (output_control) class_svm → (handle)
SVM handle.
Result🔗
If the parameters are valid the operator read_class_svm
returns the value 2 (H_MSG_TRUE). If necessary, an exception is
raised.
Combinations with other operators🔗
Module🔗
Foundation