This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.
Supported in Silverlight, Windows Phone 7| Visual Basic (Declaration) | |
|---|---|
<FlagsAttribute()> Public Enum SubtractBackgroundCommandFlags Inherits System.Enum Implements IComparable, IConvertible, IFormattable | |
| Visual Basic (Usage) | Copy Code |
|---|---|
Dim instance As SubtractBackgroundCommandFlags | |
| C# | |
|---|---|
[FlagsAttribute()] public enum SubtractBackgroundCommandFlags : System.Enum, IComparable, IConvertible, IFormattable | |
| C++/CLI | |
|---|---|
[FlagsAttribute()] public enum class SubtractBackgroundCommandFlags : public System.Enum, IComparable, IConvertible, IFormattable | |
| Member | Description |
|---|---|
| BackgroundIsBrighter | The background in the current image is brighter than the foreground. |
| BackgroundIsDarker | The background in the current image is darker than the foreground. |
| SubtractedImage | The output image shows the result of the subtraction between the background and the original image. |
| TheBackground | The output image shows only the background. |
You can use a bitwise OR (|) to specify one flag from each group.
| Group | Flags |
| Flags that represent whether the background is darker than the foreground | BackgroundIsDarker, BackgroundIsBrighter |
| Flags that represent whether to show the objects without a background | SubtractedImage, TheBackground |
System.Object
System.ValueType
System.Enum
Leadtools.ImageProcessing.Core.SubtractBackgroundCommandFlags
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