Operator Reference
serialize_class_box (Operator)
serialize_class_box
— Serialize a classifier.
Warning
serialize_class_box
is obsolete and is only provided for
reasons of backward compatibility. New applications should use the
MLP, SVM, KNN or GMM operators instead. The operator will be removed with
HALCON 25.11.
Signature
serialize_class_box( : : ClassifHandle : SerializedItemHandle)
Description
serialize_class_box
serializes a classifier (see
fwrite_serialized_item
for an introduction of the basic
principle of serialization). The same data that is written in a
file by write_class_box
is converted to a serialized item.
The classifier is defined by the handle ClassifHandle
. The
serialized classifier is returned by the handle
SerializedItemHandle
and can be deserialized by
deserialize_class_box
.
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
ClassifHandle
(input_control) class_box →
(handle)
Handle of the classifier.
SerializedItemHandle
(output_control) serialized_item →
(handle)
Handle of the serialized item.
Result
If the parameters are valid, the operator
serialize_class_box
returns the value 2 (
H_MSG_TRUE)
. If
necessary, an exception is raised.
Possible Predecessors
create_class_box
,
enquire_class_box
,
learn_class_box
,
test_sampset_box
Possible Successors
fwrite_serialized_item
,
send_serialized_item
,
deserialize_class_box
See also
create_class_box
,
deserialize_class_box
Module
Foundation