Enumeration used by cvCheckArr
Namespace:
Emgu.CV.CvEnumAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
| C# |
|---|
[FlagsAttribute] public enum CHECK_TYPE |
| Visual Basic (Declaration) |
|---|
<FlagsAttribute> _ Public Enumeration CHECK_TYPE |
| Visual C++ |
|---|
[FlagsAttribute] public enum class CHECK_TYPE |
Members
| Member name | 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
|