Class Enums.Kernel
A resizing kernel. One of these can be given to operations like Reduce(Double, Double, String) or Resize(Double, String, Nullable<Double>) to select the resizing kernel to use.
Inheritance
System.Object
Enums.Kernel
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: NetVips
Assembly: NetVips.dll
Syntax
public static class Kernel
Fields
| Improve this Doc View SourceCubic
Cubic interpolation.
Declaration
public const string Cubic = "cubic"
Field Value
Type | Description |
---|---|
System.String |
Lanczos2
Two-lobe Lanczos.
Declaration
public const string Lanczos2 = "lanczos2"
Field Value
Type | Description |
---|---|
System.String |
Lanczos3
Three-lobe Lanczos.
Declaration
public const string Lanczos3 = "lanczos3"
Field Value
Type | Description |
---|---|
System.String |
Linear
Linear interpolation.
Declaration
public const string Linear = "linear"
Field Value
Type | Description |
---|---|
System.String |
Mitchell
Mitchell
Declaration
public const string Mitchell = "mitchell"
Field Value
Type | Description |
---|---|
System.String |
Nearest
Nearest-neighbour interpolation.
Declaration
public const string Nearest = "nearest"
Field Value
Type | Description |
---|---|
System.String |