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



Flags that indicate whether the background is darker than the foreground, and whether to show the objects without the background. You must select one from each group.

This enumeration has a System.FlagsAttribute attribute that allows a bitwise combination of its member values.

Supported in Silverlight, Windows Phone 7

Syntax

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

Members

MemberDescription
BackgroundIsBrighterThe background in the current image is brighter than the foreground.
BackgroundIsDarkerThe background in the current image is darker than the foreground.
SubtractedImageThe output image shows the result of the subtraction between the background and the original image.
TheBackgroundThe output image shows only the background.

Remarks

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

Inheritance Hierarchy

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

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