http://www.emgu.com
Enumeration used by cvCheckArr
Namespace:
Emgu.CV.CvEnum
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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 neither 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