C#
VB
Java
Objective-C
WinRT C#
C++
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.
[FlagsAttribute()]public enum DeinterlaceCommandFlags
<FlagsAttribute()>Public Enum DeinterlaceCommandFlags
[FlagsAttribute()]public enum DeinterlaceCommandFlags
typedef NS_OPTIONS(NSUInteger, LTDeinterlaceCommandFlags) public enum DeinterlaceCommandFlags Leadtools.ImageProcessing.Effects.DeinterlaceCommandFlags = function() { };Leadtools.ImageProcessing.Effects.DeinterlaceCommandFlags.prototype = {<br/>None = 0x00000000,Normal = 0x00000001,Smooth = 0x00000002,Odd = 0x00000010,Even = 0x00000020,};
[FlagsAttribute()]public enum class DeinterlaceCommandFlags
Members
| Value | Member | Description |
|---|---|---|
| 0x00000000 | None | No change. |
| 0x00000001 | Normal | Deinterlace the image by copying the data line into the removed lines. |
| 0x00000002 | Smooth | Deinterlace the image by averaging the data lines and copying the averaged data into the removed lines. |
| 0x00000010 | Odd | Remove the odd lines. |
| 0x00000020 | Even | Remove the even lines. |
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 |
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET
