Leadtools.ImageProcessing.Core Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
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 FlagsAttribute attribute that allows a bitwise combination of its member values.

Syntax

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

Members

MemberDescription
BackgroundIsDarker The background in the current image is darker than the foreground.
BackgroundIsBrighter The background in the current image is brighter 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.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
GroupFlags
Flags that represent whether the background is darker than the foregroundBackgroundIsDarker, BackgroundIsBrighter
Flags that represent whether to show the objects without a backgroundSubtractedImage, TheBackground

Inheritance Hierarchy

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

Requirements

Target Platforms: Microsoft .NET Framework 2.0, Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also