LEADTOOLS Image Processing (Leadtools.ImageProcessing.Core assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.29
AutoZoningOptions Enumeration
See Also  
Leadtools.ImageProcessing.Core Namespace : AutoZoningOptions Enumeration



Flags that determine the behavior of the auto zoning process.

Syntax

Visual Basic (Declaration) 
<FlagsAttribute()>
Public Enum AutoZoningOptions 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As AutoZoningOptions
C# 
[FlagsAttribute()]
public enum AutoZoningOptions : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class AutoZoningOptions : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
AllowOverlapAllows overlapping zones.
DetectAccurateZonesDon’t merge text zones and keep them separated (paragraphs)
DetectAllDetect all zones.
DetectGeneralZonesMerge text zones to the maximum.
DetectGraphicsDetect graphics zones.
DetectTableDetect table zones.
DetectTextDetect text zones.
DontAllowOverlapDon't allow overlapping zones.
DontRecognizeOneCellTableDon't recognize tables that contain only one cell. (ignore one-cell tables (borders), and detect what inside.)
DontUseMultiThreadingDon’t Use Multithreading (that will be used with a single-core CPUs)
NoneNone.
RecognizeOneCellTableRecognize tables that contain only one cell, (consider the borders as one-cell tables).
UseAdvancedTableDetectionUse Advanced Table Detection to return more accurate results and detect complex tables
UseLinesReconstructionUse Lines Reconstruction to connect broken lines and for patterned tables.
UseMultiThreadingUse Multithreading (that will be faster with a multi-core CPUs)
UseNormalTableDetectionUse Normal Table Detection

Remarks

You can use a bitwise OR (|) to specify one or more flags.

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Core.AutoZoningOptions

Requirements

Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)

See Also