Skip to content

do_ocr_multi_class_mlpDoOcrMultiClassMlpDoOcrMultiClassMlpdo_ocr_multi_class_mlpT_do_ocr_multi_class_mlp🔗

Short description🔗

do_ocr_multi_class_mlpDoOcrMultiClassMlpDoOcrMultiClassMlpdo_ocr_multi_class_mlpT_do_ocr_multi_class_mlp — Classify multiple characters with an OCR classifier.

Signature🔗

do_ocr_multi_class_mlp( region Character, image Image, ocr_mlp OCRHandle, out string Class, out real Confidence )void DoOcrMultiClassMlp( const HObject& Character, const HObject& Image, const HTuple& OCRHandle, HTuple* Class, HTuple* Confidence )static void HOperatorSet.DoOcrMultiClassMlp( HObject character, HObject image, HTuple OCRHandle, out HTuple classVal, out HTuple confidence )def do_ocr_multi_class_mlp( character: HObject, image: HObject, ocrhandle: HHandle ) -> Tuple[Sequence[str], Sequence[float]]

def do_ocr_multi_class_mlp_s( character: HObject, image: HObject, ocrhandle: HHandle ) -> Tuple[str, float]Herror T_do_ocr_multi_class_mlp( const Hobject Character, const Hobject Image, const Htuple OCRHandle, Htuple* Class, Htuple* Confidence )

HTuple HRegion::DoOcrMultiClassMlp( const HImage& Image, const HOCRMlp& OCRHandle, HTuple* Confidence ) const

HString HRegion::DoOcrMultiClassMlp( const HImage& Image, const HOCRMlp& OCRHandle, double* Confidence ) const

HTuple HOCRMlp::DoOcrMultiClassMlp( const HRegion& Character, const HImage& Image, HTuple* Confidence ) const

HString HOCRMlp::DoOcrMultiClassMlp( const HRegion& Character, const HImage& Image, double* Confidence ) const

HTuple HRegion.DoOcrMultiClassMlp( HImage image, HOCRMlp OCRHandle, out HTuple confidence )

string HRegion.DoOcrMultiClassMlp( HImage image, HOCRMlp OCRHandle, out double confidence )

HTuple HOCRMlp.DoOcrMultiClassMlp( HRegion character, HImage image, out HTuple confidence )

string HOCRMlp.DoOcrMultiClassMlp( HRegion character, HImage image, out double confidence )

Description🔗

do_ocr_multi_class_mlpDoOcrMultiClassMlp computes the best class for each of the characters given by the regions Charactercharactercharacter and the gray values Imageimageimage with the OCR classifier OCRHandleOCRHandleocrhandle and returns the classes in ClassclassValclass and the corresponding confidences (probabilities) of the classes in Confidenceconfidenceconfidence. In contrast to do_ocr_single_class_mlpDoOcrSingleClassMlp, do_ocr_multi_class_mlpDoOcrMultiClassMlp can classify multiple characters in one call, and therefore typically is faster than a loop that uses do_ocr_single_class_mlpDoOcrSingleClassMlp to classify single characters. However, do_ocr_multi_class_mlpDoOcrMultiClassMlp can only return the best class of each character. Because the confidences can be interpreted as probabilities (see classify_class_mlpClassifyClassMlp and evaluate_class_mlpEvaluateClassMlp), 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_mlpDoOcrSingleClassMlp should be used.

A string of the number \('\backslash 032'\) (alternatively displayed as \('\backslash 0x1A'\)) in ClassclassValclass signifies that the region has been classified as rejection class.

Before calling do_ocr_multi_class_mlpDoOcrMultiClassMlp, the classifier must be trained with trainf_ocr_class_mlpTrainfOcrClassMlp.

Execution information🔗

Execution information
  • Multithreading type: reentrant (runs in parallel with non-exclusive operators).

  • Multithreading scope: global (may be called from any thread).

Parameters🔗

Charactercharactercharacter (input_object) region(-array) → objectHObjectHRegionHObjectHobject

Characters to be recognized.

Imageimageimage (input_object) singlechannelimage → object (byte / uint2)HObject (byte / uint2)HImage (byte / uint2)HObject (byte / uint2)Hobject (byte / uint2)

Gray values of the characters.

OCRHandleOCRHandleocrhandle (input_control) ocr_mlp → (handle)HTuple (HHandle)HOCRMlp, HTuple (IntPtr)HHandleHtuple (handle)

Handle of the OCR classifier.

ClassclassValclass (output_control) string(-array) → (string)HTuple (HString)HTuple (string)Sequence[str]Htuple (char*)

Result of classifying the characters with the MLP.

Number of elements: Class == Character

Confidenceconfidenceconfidence (output_control) real(-array) → (real)HTuple (double)HTuple (double)Sequence[float]Htuple (double)

Confidence of the class of the characters.

Number of elements: Confidence == Character

Result🔗

If the parameters are valid, the operator do_ocr_multi_class_mlpDoOcrMultiClassMlp returns the value 2 (H_MSG_TRUE). If necessary, an exception is raised.

Combinations with other operators🔗

Combinations

Possible predecessors

trainf_ocr_class_mlpTrainfOcrClassMlp, read_ocr_class_mlpReadOcrClassMlp

Alternatives

do_ocr_word_mlpDoOcrWordMlp, do_ocr_single_class_mlpDoOcrSingleClassMlp

See also

create_ocr_class_mlpCreateOcrClassMlp, classify_class_mlpClassifyClassMlp

Module🔗

OCR/OCV