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



Flags that indicate how to deinterlace the image and whether to remove odd lines or even lines.

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 DeinterlaceCommandFlags 
   Inherits System.Enum
   Implements IComparableIConvertibleIFormattable 
Visual Basic (Usage)Copy Code
Dim instance As DeinterlaceCommandFlags
C# 
[FlagsAttribute()]
public enum DeinterlaceCommandFlags : System.Enum, IComparableIConvertibleIFormattable  
C++/CLI 
[FlagsAttribute()]
public enum class DeinterlaceCommandFlags : public System.Enum, IComparableIConvertibleIFormattable  

Members

MemberDescription
EvenRemove the even lines.
NoneNo change.
NormalDeinterlace the image by copying the data line into the removed lines.
OddRemove the odd lines.
SmoothDeinterlace the image by averaging the data lines and copying the averaged data into the removed lines.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
Group Flags
Flags that indicate how to deinterlace the image. Smooth, Normal
Flags that indicate whether to remove odd or even lines. Odd, Even

Inheritance Hierarchy

System.Object
   System.ValueType
      System.Enum
         Leadtools.ImageProcessing.Effects.DeinterlaceCommandFlags

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