ImageEn, unit ievision

TIEVisionInterpolation


Declaration

  TIEVisionInterpolation = (
    ievNEAREST       = 0,       // Nearest neighbor interpolation
    ievLINEAR        = 1,       // Bilinear interpolation
    ievCUBIC         = 2,       // Bicubic interpolation
    ievAREA          = 3,       // Resampling using pixel area relation (a preferred method for image decimation as it gives moire-free results)
    ievLANCZOS4      = 4,       // Lanczos interpolation over 8x8 neighborhood
    ievLINEAR_EXACT  = 5,       // Bit exact bilinear interpolation
    ievNEAREST_EXACT = 6        // Bit exact nearest neighbor interpolation. This will produce same results as the nearest neighbor method in PIL, scikit-image or Matlab
  );