OcrModuleType Enumeration (original) (raw)

Summary

Specifies the type of OCR module.

Syntax

C#

Objective-C

C++/CLI

Python

[SerializableAttribute()] public enum OcrModuleType

typedef NS_ENUM(NSInteger, LTOcrModuleType) { LTOcrModuleTypeOCR = 0, // OCR LTOcrModuleTypeICR, // ICR LTOcrModuleTypeMixed, // Mixed };

public: [SerializableAttribute] enum class OcrModuleType sealed

class OcrModuleType(Enum): OCR = 0 ICR = 1 Mixed = 2

Members

Value Member Description
0 OCR Machine written text.
1 ICR Handwritten text.
2 Mixed Both Machine and Handwritten text.