Class FilterMode
A filter mode.
Inheritance
System.Object
FilterMode
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: FM.LiveSwitch.Yuv
Assembly: FM.LiveSwitch.Yuv.dll
Syntax
public class FilterMode
Properties
Bilinear
Gets the value indicating bilinear. This is faster than box, but produces lower quality.
Declaration
public static int Bilinear { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Box
Gets the value indicating box. This is the slowest option, but produces the highest quality.
Declaration
public static int Box { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
Linear
Gets the value indicating linear (horizontal only). This is faster than bilinear, but produces lower quality.
Declaration
public static int Linear { get; }
Property Value
Type | Description |
---|---|
System.Int32 |
None
Gets the value indicating no filter (point sample). This is the fastest option, but produces the lowest quality.
Declaration
public static int None { get; }
Property Value
Type | Description |
---|---|
System.Int32 |