Table of Contents

Enum Inter

Namespace
Emgu.CV.CvEnum
Assembly
Emgu.CV.dll

Interpolation types

public enum Inter

Fields

Area = 3

Resampling using pixel area relation. It is the preferred method for image decimation that gives moire-free results. In case of zooming it is similar to CV_INTER_NN method

Cubic = 2

Bicubic interpolation

Lanczos4 = 4

Lanczos interpolation over 8x8 neighborhood

Linear = 1

Bilinear interpolation

LinearExact = 5

Bit exact bilinear interpolation

Nearest = 0

Nearest-neighbor interpolation

NearestExact = 6

Bit exact nearest neighbor interpolation. This will produce same results as the nearest neighbor method in PIL, scikit-image or Matlab.