| MatCheckRange Method (Boolean, Point, Double, Double) | 
        
         
            checks that each matrix element is within the specified range.
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic bool CheckRange(
	bool quiet,
	out Point pos,
	double minVal = -1.79769313486232E+308,
	double maxVal = 1.79769313486232E+308
)
Public Function CheckRange ( 
	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:
bool CheckRange(
	bool quiet, 
	[OutAttribute] Point% pos, 
	double minVal = -1.79769313486232E+308, 
	double maxVal = 1.79769313486232E+308
)
member CheckRange : 
        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 
function CheckRange(quiet, pos, minVal, maxVal);
Parameters
- 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 See Also
See Also