Table of Contents

Enum CVDewarpInterpolationMode

Namespace
VisioForge.Core.Types.X.OpenCV
Assembly
VisioForge.Core.dll

Specifies the pixel interpolation algorithm used during OpenCV fisheye dewarp processing. Higher-quality modes produce smoother results at the cost of additional compute time.

public enum CVDewarpInterpolationMode

Fields

Nearest = 0

The nearest-neighbor interpolation.

Bilinear = 1

The bilinear interpolation.

Bicubic = 2

The bicubic interpolation over 4x4 pixel neighborhood.

Lanczos = 3

The Lanczos interpolation over 8x8 pixel neighborhood.