| MatMinMaxLoc Method (Double, Double, Point, Point, InputArray) | 
        
         
            finds global minimum and maximum array elements and returns their values and their locations
            
 
    Namespace: 
   OpenCvSharp
    Assembly:
   OpenCvSharp (in OpenCvSharp.dll) Version: 3.4.1.20180605-33-CaRLSharp
 Syntax
Syntaxpublic void MinMaxLoc(
	out double minVal,
	out double maxVal,
	out Point minLoc,
	out Point maxLoc,
	InputArray mask = null
)
Public Sub MinMaxLoc ( 
	<OutAttribute> ByRef minVal As Double,
	<OutAttribute> ByRef maxVal As Double,
	<OutAttribute> ByRef minLoc As Point,
	<OutAttribute> ByRef maxLoc As Point,
	Optional mask As InputArray = Nothing
)
public:
void MinMaxLoc(
	[OutAttribute] double% minVal, 
	[OutAttribute] double% maxVal, 
	[OutAttribute] Point% minLoc, 
	[OutAttribute] Point% maxLoc, 
	InputArray^ mask = nullptr
)
member MinMaxLoc : 
        minVal : float byref * 
        maxVal : float byref * 
        minLoc : Point byref * 
        maxLoc : Point byref * 
        ?mask : InputArray 
(* Defaults:
        let _mask = defaultArg mask null
*)
-> unit 
function MinMaxLoc(minVal, maxVal, minLoc, maxLoc, mask);
Parameters
- minVal
- Type: SystemDouble
 Pointer to returned minimum value
- maxVal
- Type: SystemDouble
 Pointer to returned maximum value
- minLoc
- Type: OpenCvSharpPoint
 Pointer to returned minimum location
- maxLoc
- Type: OpenCvSharpPoint
 Pointer to returned maximum location
- mask (Optional)
- Type: OpenCvSharpInputArray
 The optional mask used to select a sub-array
 See Also
See Also