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 = 1Use the generic portable implementation (more accurate / reproducible).
Approx = 2Allow alternative approximations for a faster implementation; behaviour and result depend on the platform.
Default = 0Default algorithm behaviour defined during the OpenCV build.