checks that each matrix element is within the specified range.
Namespace: OpenCvSharp.CPlusPlus
Assembly: OpenCvSharp.CPlusPlus (in OpenCvSharp.CPlusPlus.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static bool CheckRange( InputArray src, bool quiet, out Point pos, double minVal = -1.79769313486232E+308, double maxVal = 1.79769313486232E+308 )
Parameters
- src
- Type: OpenCvSharp.CPlusPlusInputArray
The array to check - quiet
- Type: SystemBoolean
The flag indicating whether the functions quietly return false when the array elements are out of range, or they throw an exception. - pos
- Type: OpenCvSharp.CPlusPlusPoint
The optional output parameter, where the position of the first outlier is stored. - minVal (Optional)
- Type: SystemDouble
The inclusive lower boundary of valid values range - maxVal (Optional)
- Type: SystemDouble
The exclusive upper boundary of valid values range
Return Value
Type: Boolean[Missing <returns> documentation for "M:OpenCvSharp.CPlusPlus.Cv2.CheckRange(OpenCvSharp.CPlusPlus.InputArray,System.Boolean,OpenCvSharp.CPlusPlus.Point@,System.Double,System.Double)"]
See Also