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

Syntax

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

Members

MemberDescription
None No change.
Odd Remove the odd lines.
Even Remove the even lines.
Smooth Deinterlace the image by averaging the data lines and copying the averaged data into the removed lines.
Normal Deinterlace the image by copying the data line into the removed lines.

Remarks

You can use a bitwise OR (|) to specify one flag from each group.
GroupFlags
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: 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