http://www.emgu.com
Enumeration used by cvCheckArr
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntax[FlagsAttribute]
public enum CheckType
<FlagsAttribute>
Public Enumeration CheckType
[FlagsAttribute]
public enum class CheckType
[<FlagsAttribute>]
type CheckType
Members|
| Member name | Value | Description |
|---|
| NanInfinity | 0 |
Checks that every element is neither NaN nor Infinity
|
| Range | 1 |
If set, the function checks that every value of array is within [minVal,maxVal) range, otherwise it just checks that every element is neigther NaN nor Infinity
|
| Quite | 2 |
If set, the function does not raises an error if an element is invalid or out of range
|
See Also