| Cv2CheckRange Method (InputArray, Boolean, Point, Double, Double) |
checks that each matrix element is within the specified range.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static bool CheckRange(
InputArray src,
bool quiet,
out Point pos,
double minVal = -1.79769313486232E+308,
double maxVal = 1.79769313486232E+308
)
Public Shared Function CheckRange (
src As InputArray,
quiet As Boolean,
<OutAttribute> ByRef pos As Point,
Optional minVal As Double = -1.79769313486232E+308,
Optional maxVal As Double = 1.79769313486232E+308
) As Boolean
public:
static bool CheckRange(
InputArray^ src,
bool quiet,
[OutAttribute] Point% pos,
double minVal = -1.79769313486232E+308,
double maxVal = 1.79769313486232E+308
)
static member CheckRange :
src : InputArray *
quiet : bool *
pos : Point byref *
?minVal : float *
?maxVal : float
(* Defaults:
let _minVal = defaultArg minVal -1.79769313486232E+308
let _maxVal = defaultArg maxVal 1.79769313486232E+308
*)
-> bool
Parameters
- src
- Type: OpenCvSharpInputArray
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: OpenCvSharpPoint
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.Cv2.CheckRange(OpenCvSharp.InputArray,System.Boolean,OpenCvSharp.Point@,System.Double,System.Double)"]
See Also