Flags that determine the behavior of the Auto Binarize process.
Supported in Silverlight, Windows Phone 7| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum AutoBinarizeCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As AutoBinarizeCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum AutoBinarizeCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class AutoBinarizeCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| DontUsePreProcessing | Don’t perform pre-processing. |
| UseAutoPreProcessing | Use automatic pre-processing. |
| UseAutoThreshold | Perform automatic thresholding. |
| UseBackGroundElimination | Eliminate the background of the bitmap but keep the key features, such as text. |
| UseColorLeveling | Perform auto color-leveling. |
| UseMedianThreshold | Perform median thresholding. |
| UsePercentileThreshold | Perform 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. |
| UseUserThreshold | Let the user choose the threshold color value to be passed in Factor. Valid values range from 0 (black) to 255 (white). |
You can use a bitwise OR (|) to specify one or more flags.
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Core.AutoBinarizeCommandFlags
Target Platforms: Silverlight 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family, Windows Vista, Windows 7, MAC OS/X (Intel Only)
Copy Code