serialize_ocr_class_mlp🔗
Short description🔗
serialize_ocr_class_mlp — Serialize a MLP-based OCR classifier.
Signature🔗
serialize_ocr_class_mlp( ocr_mlp OCRHandle, out serialized_item SerializedItemHandle )
Description🔗
serialize_ocr_class_mlp serializes a MLP-based OCR 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_ocr_class_mlp is converted to a serialized item.
The OCR classifier is defined by the handle OCRHandle. The
serialized OCR classifier is returned by the handle
SerializedItemHandle and can be deserialized by
deserialize_ocr_class_mlp.
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🔗
OCRHandle (input_control) ocr_mlp → (handle)
Handle of the OCR classifier.
SerializedItemHandle (output_control) serialized_item → (handle)
Handle of the serialized item.
Result🔗
If the parameters are valid, the operator
serialize_ocr_class_mlp returns the value 2 (H_MSG_TRUE). If
necessary, an exception is raised.
Combinations with other operators🔗
Combinations
Possible predecessors
Possible successors
clear_ocr_class_mlp, fwrite_serialized_item, send_serialized_item, deserialize_ocr_class_mlp
See also
create_ocr_class_mlp, read_ocr_class_mlp, write_class_mlp, read_class_mlp, deserialize_ocr_class_mlp
Module🔗
OCR/OCV