http://www.emgu.com
Interpolation types
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
Members
| Member name | Value | Description |
---|
| Nearest | 0 |
Nearest-neighbor interpolation
|
| Linear | 1 |
Bilinear interpolation
|
| Cubic | 2 |
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
|
| Area | 3 |
Bicubic interpolation
|
| Lanczos4 | 4 |
Lanczos interpolation over 8x8 neighborhood
|
| LinearExact | 5 |
Bit exact bilinear interpolation
|
See Also