Leadtools.Forms.Ocr Namespace : OcrProgressOperation Enumeration |
[SerializableAttribute()] public enum OcrProgressOperation : System.Enum, System.IComparable, System.IConvertible, System.IFormattable
'Declaration <SerializableAttribute()> Public Enum OcrProgressOperation Inherits System.Enum Implements System.IComparable, System.IConvertible, System.IFormattable
'Usage Dim instance As OcrProgressOperation
[SerializableAttribute()] public enum OcrProgressOperation : System.IComparable, System.IConvertible, System.IFormattable
enum LTOcrProgressOperation
public enum OcrProgressOperation
Leadtools.Forms.Ocr.OcrProgressOperation = function() { }; Leadtools.Forms.Ocr.OcrProgressOperation.prototype = {
LoadImage = 0x00000000, SaveImage = 0x00000001, ProcessImage = 0x00000002, FindZones = 0x00000003, RecognizeFirstPass = 0x00000004, RecognizeSecondPass = 0x00000005, RecognizeThirdPass = 0x00000006, SaveDocumentPrepare = 0x00000007, SaveDocument = 0x00000008, SaveDocumentConvertImage = 0x00000009, Formatting = 0x0000000A, RecognizeOmr = 0x0000000B, };
[SerializableAttribute()] public enum class OcrProgressOperation : public System.Enum, System.IComparable, System.IConvertible, System.IFormattable
Value | Member | Description |
---|---|---|
0x00000000 | LoadImage | Image load operation. Used when pages are added to an OCR document through one of IOcrPageCollection.AddPage, IOcrPageCollection.AddPages, IOcrPageCollection.InsertPage or IOcrPageCollection.InsertPages methods. |
0x00000001 | SaveImage | Image save operation. Used when IOcrPage.Recognize is called. |
0x00000002 | ProcessImage | Image preprocessing operation. Used when IOcrPage.AutoPreprocess is called. |
0x00000003 | FindZones | Page-layout decomposition operation. Used when IOcrPage.AutoZone is called. |
0x00000004 | RecognizeFirstPass | First pass recognition operation that may be used when IOcrPage.Recognize is used with the MOR recognition module |
0x00000005 | RecognizeSecondPass | Second pass recognition operation. Used when IOcrPage.Recognize is called. |
0x00000006 | RecognizeThirdPass | Second pass recognition operation. Used when IOcrPage.Recognize is called with OcrZoneRecognitionModule.OmniFontPlus3WayVoting is enabled. |
0x00000007 | SaveDocumentPrepare | Prepare the document operation. Used when IOcrDocument.Save or IOcrDocument.SaveAsync is called. |
0x00000008 | SaveDocument | Save document operation. Used when IOcrDocument.Save or IOcrDocument.SaveAsync is called. |
0x00000009 | SaveDocumentConvertImage | Convert the document images operation. Used when IOcrDocument.Save or IOcrDocument.SaveAsync is called. |
0x0000000A | Formatting | Format the document before saving. Used when IOcrDocument.Save or IOcrDocument.SaveAsync is called. |
0x0000000B | RecognizeOmr | Recognizing OMR zones operation. Used when IOcrPage.Recognize is called on a page with zones containing OcrZoneFillMethod.Omr. |
OcrProgressOperation is the value of IOcrProgressData.Operation. Use this value to examine the current operation of the process.
Each operation listed represents one of the fundamental services provided by the OCR engine. Any application program will use at least some of these processes.
Each operation can be initiated by the methods shown. OcrProgressCallback can be used to generate progress monitoring on any of these operations.
System.Object
System.ValueType
System.Enum
Leadtools.Forms.Ocr.OcrProgressOperation