Classify multiple characters with an OCR classifier.
do_ocr_multi_class_mlp computes the best class for each of the characters given by the regions Character and the gray values Image with the OCR classifier OCRHandle and returns the classes in Class and the corresponding confidences (probabilities) of the classes in Confidence. In contrast to do_ocr_single_class_mlp, do_ocr_multi_class_mlp can classify multiple characters in one call, and therefore typically is faster than a loop that uses do_ocr_single_class_mlp to classify single characters. However, do_ocr_multi_class_mlp can only return the best class of each character. Because the confidences can be interpreted as probabilities (see classify_class_mlp and evaluate_class_mlp), and it is therefore easy to check whether a character has been classified with too much uncertainty, this is usually not a disadvantage, except in cases where the classes overlap so much that in many cases the second best class must be examined to be able to decide the class of the character. In these cases, do_ocr_single_class_mlp should be used. Before calling do_ocr_multi_class_mlp, the classifier must be trained with trainf_ocr_class_mlp.
|
Character (input_object) |
region(-array) -> object |
| Characters to be recognized. | |
|
Image (input_object) |
image -> object : byte / uint2 |
| Gray values of the characters. | |
|
OCRHandle (input_control) |
ocr_mlp -> integer |
| Handle of the OCR classifier. | |
|
Class (output_control) |
string(-array) -> string |
| Result of classifying the characters with the MLP. | |
| Number of elements: Class == Character | |
|
Confidence (output_control) |
real(-array) -> real |
| Confidence of the class of the characters. | |
| Number of elements: Confidence == Character | |
If the parameters are valid, the operator do_ocr_multi_class_mlp returns the value 2 (H_MSG_TRUE). If necessary an exception handling is raised.
do_ocr_multi_class_mlp is reentrant and automatically parallelized (on tuple level).
trainf_ocr_class_mlp, read_ocr_class_mlp
create_ocr_class_mlp, classify_class_mlp
OCR/OCV