Finds global minimum and maximum in array or subarray
Namespace: OpenCvSharp
Assembly: OpenCvSharp (in OpenCvSharp.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax
public static void MinMaxLoc( CvArr arr, out CvPoint minLoc, out CvPoint maxLoc, CvArr mask )
Parameters
- arr
- Type: OpenCvSharpCvArr
The source array, single-channel or multi-channel with COI set. - minLoc
- Type: OpenCvSharpCvPoint
Pointer to returned minimum location. - maxLoc
- Type: OpenCvSharpCvPoint
Pointer to returned maximum location. - mask
- Type: OpenCvSharpCvArr
The optional mask that is used to select a subarray.
See Also