Table of Contents

Enum AlgorithmHint

Namespace
OpenCvSharp
Assembly
OpenCvSharp.dll

Hint that selects between alternative algorithm implementations (OpenCV 5). Passed to functions such as warpAffine, warpPerspective, remap, GaussianBlur and cvtColor.

public enum AlgorithmHint

Fields

Accurate = 1

Use the generic portable implementation (more accurate / reproducible).

Approx = 2

Allow alternative approximations for a faster implementation; behaviour and result depend on the platform.

Default = 0

Default algorithm behaviour defined during the OpenCV build.