←Select platform

DeinterlaceCommandFlags Enumeration

Summary
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
C#
Objective-C
C++/CLI
Java
Python
[FlagsAttribute()] 
public enum DeinterlaceCommandFlags   
typedef NS_OPTIONS(NSUInteger, LTDeinterlaceCommandFlags) 
public final class DeinterlaceCommandFlags 
    extends java.lang.Enum<DeinterlaceCommandFlags> 
[FlagsAttribute()] 
public enum class DeinterlaceCommandFlags   
class DeinterlaceCommandFlags(Enum): 
   None = 0 
   Normal = 1 
   Smooth = 2 
   Odd = 16 
   Even = 32 
Members
ValueMemberDescription
0x00000000None No change.
0x00000001Normal Deinterlace the image by copying the data line into the removed lines.
0x00000002Smooth Deinterlace the image by averaging the data lines and copying the averaged data into the removed lines.
0x00000010Odd Remove the odd lines.
0x00000020Even Remove the even 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
Requirements

Target Platforms

Help Version 23.0.2024.3.3
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Effects Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.