Enumeration used by cvCheckArr
| C# | Visual Basic | Visual C++ |
[FlagsAttribute] public enum CHECK_TYPE
<FlagsAttribute> _ Public Enumeration CHECK_TYPE
[FlagsAttribute] public enum class CHECK_TYPE
| Member | Description |
|---|---|
| CHECK_NAN_INFINITY |
checks that every element is neigther NaN nor ?Infinity
|
| CHECK_RANGE |
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
|
| CHECK_QUIET |
if set, the function does not raises an error if an element is invalid or out of range
|