MatCheckRange Method (Boolean)
|
checks that each matrix element is within the specified range.
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
Syntaxpublic bool CheckRange(
bool quiet = true
)
Public Function CheckRange (
Optional quiet As Boolean = true
) As Boolean
public:
bool CheckRange(
bool quiet = true
)
member CheckRange :
?quiet : bool
(* Defaults:
let _quiet = defaultArg quiet true
*)
-> bool
function CheckRange(quiet);
Parameters
- 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
See Also