Flags that determine the behavior of the auto zoning process.
Visual Basic (Declaration) | |
---|---|
<FlagsAttribute()> Public Enum AutoZoningOptions Inherits System.Enum Implements IComparable, IConvertible, IFormattable |
Visual Basic (Usage) | Copy Code |
---|---|
Dim instance As AutoZoningOptions |
C# | |
---|---|
[FlagsAttribute()] public enum AutoZoningOptions : System.Enum, IComparable, IConvertible, IFormattable |
C++/CLI | |
---|---|
[FlagsAttribute()] public enum class AutoZoningOptions : public System.Enum, IComparable, IConvertible, IFormattable |
Member | Description |
---|---|
AllowOverlap | Allows overlapping zones. |
DetectAccurateZones | Don’t merge text zones and keep them separated (paragraphs) |
DetectAll | Detect all zones. |
DetectGeneralZones | Merge text zones to the maximum. |
DetectGraphics | Detect graphics zones. |
DetectTable | Detect table zones. |
DetectText | Detect text zones. |
DontAllowOverlap | Don't allow overlapping zones. |
DontRecognizeOneCellTable | Don't recognize tables that contain only one cell. (ignore one-cell tables (borders), and detect what inside.) |
DontUseMultiThreading | Don’t Use Multithreading (that will be used with a single-core CPUs) |
None | None. |
RecognizeOneCellTable | Recognize tables that contain only one cell, (consider the borders as one-cell tables). |
UseAdvancedTableDetection | Use Advanced Table Detection to return more accurate results and detect complex tables |
UseLinesReconstruction | Use Lines Reconstruction to connect broken lines and for patterned tables. |
UseMultiThreading | Use Multithreading (that will be faster with a multi-core CPUs) |
UseNormalTableDetection | Use Normal Table Detection |
You can use a bitwise OR (|) to specify one or more flags.
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Core.AutoZoningOptions
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)