http://www.emgu.com
Enumeration used by cvCheckArr
Namespace: Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
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