Operator Reference
deserialize_dl_classifier (Operator)
deserialize_dl_classifier — Deserialize a deep-learning-based classifier.
Warning
deserialize_dl_classifier is obsolete and is only provided for
reasons of backward compatibility.
The operator will be removed with HALCON 25.05.
New applications should use the
common CNN-based operator deserialize_dl_model.
Signature
deserialize_dl_classifier( : : SerializedItemHandle : DLClassifierHandle)
Description
deserialize_dl_classifier deserializes a deep-learning-based
classifier, that was serialized by serialize_dl_classifier.
The operator acts the same as read_dl_classifier except that the
input is a serialized item instead of a file. For a detailed description
please refer to the documentation of read_dl_classifier.
For an explanation of the concept of deep-learning-based classification see the introduction of chapter Deep Learning / Classification. The workflow involving this legacy operator is described in the chapter Legacy / DL Classification.
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
SerializedItemHandle (input_control) serialized_item → (handle)
Handle of the serialized item.
DLClassifierHandle (output_control) dl_classifier → (handle)
Handle of the deep-learning-based classifier.
Result
If the parameters are valid, the operator
deserialize_dl_classifier returns the value 2 (
H_MSG_TRUE)
. If
necessary, an exception is raised.
Possible Predecessors
fread_serialized_item,
receive_serialized_item,
serialize_dl_classifier
Possible Successors
apply_dl_classifier,
train_dl_classifier_batch,
set_dl_classifier_param,
get_dl_classifier_param
Alternatives
See also
Module
Deep Learning Enhanced