Enum WarpFlags
Specifies interpolation and operational flags for image warp methods.
Namespace: OpenCV.Net
Assembly: OpenCV.Net.dll
Syntax
public enum WarpFlags : int
Fields
| Name | Description |
|---|---|
| Area | Specifies resampling using pixel area relation. It may be a preferred method for image decimation, as it gives moire’-free results. Similar to NearestNeighbor when image is zoomed. |
| Cubic | Specifies a bicubic interpolation over a 4x4 pixel neighborhood. |
| FillOutliers | Specifies that all destination pixels should be filled. If some correspond to outliers in the source image, they are set to a constant value. |
| InverseMap | Specifies that the map matrix is inversely transformed from the destination image to the source and can thus be used directly for pixel interpolation. |
| Lanczos4 | Specifies a Lanczos interpolation over an 8x8 pixel neighborhood. |
| Linear | Specifies a bilinear interpolation. |
| NearestNeighbor | Specifies a nearest-neighbor interpolation. |