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



Flags that determine the behavior of the Auto Binarize process.

Supported in Silverlight, Windows Phone 7

Syntax

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

Members

MemberDescription
DontUsePreProcessingDon’t perform pre-processing.
UseAutoPreProcessingUse automatic pre-processing.
UseAutoThresholdPerform automatic thresholding.
UseBackGroundEliminationEliminate the background of the bitmap but keep the key features, such as text.
UseColorLevelingPerform auto color-leveling.
UseMedianThresholdPerform median thresholding.
UsePercentileThresholdPerform percentile thresholding. In this case the Factor is the percentage of black pixels at which to perform thresholding, expressed in hundredths of a percent. For example, 500 means 5 percent. Valid values range from 0 to 10000.
UseUserThresholdLet the user choose the threshold color value to be passed in Factor. Valid values range from 0 (black) to 255 (white).

Remarks

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

Inheritance Hierarchy

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

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