Show / Hide Table of Contents

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 Source

Cubic

Cubic interpolation.

Declaration
public const string Cubic = "cubic"
Field Value
Type Description
System.String
| Improve this Doc View Source

Lanczos2

Two-lobe Lanczos.

Declaration
public const string Lanczos2 = "lanczos2"
Field Value
Type Description
System.String
| Improve this Doc View Source

Lanczos3

Three-lobe Lanczos.

Declaration
public const string Lanczos3 = "lanczos3"
Field Value
Type Description
System.String
| Improve this Doc View Source

Linear

Linear interpolation.

Declaration
public const string Linear = "linear"
Field Value
Type Description
System.String
| Improve this Doc View Source

Mitchell

Mitchell

Declaration
public const string Mitchell = "mitchell"
Field Value
Type Description
System.String
| Improve this Doc View Source

Nearest

Nearest-neighbour interpolation.

Declaration
public const string Nearest = "nearest"
Field Value
Type Description
System.String
  • Improve this Doc
  • View Source
Back to top Generated by DocFX