| MatMinMaxLoc Method (Point, Point) | 
        
         
            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 Point minLoc,
	out Point maxLoc
)
Public Sub MinMaxLoc ( 
	<OutAttribute> ByRef minLoc As Point,
	<OutAttribute> ByRef maxLoc As Point
)
public:
void MinMaxLoc(
	[OutAttribute] Point% minLoc, 
	[OutAttribute] Point% maxLoc
)
member MinMaxLoc : 
        minLoc : Point byref * 
        maxLoc : Point byref -> unit 
function MinMaxLoc(minLoc, maxLoc);
Parameters
- minLoc
- Type: OpenCvSharpPoint
 Pointer to returned minimum location
- maxLoc
- Type: OpenCvSharpPoint
 Pointer to returned maximum location
 See Also
See Also