| Cv2MinMaxLoc Method (InputArray, Point, Point) |
finds global minimum and maximum array elements and returns their values and their locations
Namespace:
OpenCvSharp
Assembly:
OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0
Syntax public static void MinMaxLoc(
InputArray src,
out Point minLoc,
out Point maxLoc
)
Public Shared Sub MinMaxLoc (
src As InputArray,
<OutAttribute> ByRef minLoc As Point,
<OutAttribute> ByRef maxLoc As Point
)
public:
static void MinMaxLoc(
InputArray^ src,
[OutAttribute] Point% minLoc,
[OutAttribute] Point% maxLoc
)
static member MinMaxLoc :
src : InputArray *
minLoc : Point byref *
maxLoc : Point byref -> unit
Parameters
- src
- Type: OpenCvSharpInputArray
The source single-channel array - minLoc
- Type: OpenCvSharpPoint
Pointer to returned minimum location - maxLoc
- Type: OpenCvSharpPoint
Pointer to returned maximum location
See Also