InterpolationFilterType

InterpolationFilterType enumeration

Interpolations, used for scale images.

public enum InterpolationFilterType

Values

NameValueDescription
Box0The ‘Box’ Or ‘Nearest Neighbor’ filterю http://www.imagemagick.org/Usage/filter/#box
Triangle1The ‘Triangle’ or ‘Bilinear’ interpolation filter just takes the interpolation of the nearest neighbourhood one step further. http://www.imagemagick.org/Usage/filter/#triangle
Hermite2https://en.wikipedia.org/wiki/Hermite_interpolation
Bell3http://www.imagemagick.org/Usage/filter/#gaussian
CubicBSpline4http://www.imagemagick.org/Usage/filter/#cubics
Lanczos35https://en.wikipedia.org/wiki/Lanczos_resampling
Mitchell6http://www.imagemagick.org/Usage/filter/#mitchell
Cosine7https://en.wikipedia.org/wiki/Trigonometric_interpolation
CatmullRom8The ‘Catrom’ (Catmull-Rom) filter is a well known standard Cubic Filter often used as a interpolation function. http://www.imagemagick.org/Usage/filter/#catrom-c
Quadratic9http://www.imagemagick.org/Usage/filter/#quadratic
QuadraticBSpline10https://en.wikipedia.org/wiki/Spline_interpolation
CubicConvolution11https://en.wikipedia.org/wiki/Directional_Cubic_Convolution_Interpolation
Lanczos812https://en.wikipedia.org/wiki/Lanczos_resampling

See Also