| Cv2CheckRange Method (InputArray, Boolean) |
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 = true
)
Public Shared Function CheckRange (
src As InputArray,
Optional quiet As Boolean = true
) As Boolean
public:
static bool CheckRange(
InputArray^ src,
bool quiet = true
)
static member CheckRange :
src : InputArray *
?quiet : bool
(* Defaults:
let _quiet = defaultArg quiet true
*)
-> bool
Parameters
- src
- Type: OpenCvSharpInputArray
The array to check - quiet (Optional)
- Type: SystemBoolean
The flag indicating whether the functions quietly
return false when the array elements are out of range,
or they throw an exception.
Return Value
Type:
Boolean[Missing <returns> documentation for "M:OpenCvSharp.Cv2.CheckRange(OpenCvSharp.InputArray,System.Boolean)"]
See Also