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 double minVal, out double maxVal, out CvPoint minLoc, out CvPoint maxLoc )
Parameters
- arr
- Type: OpenCvSharpCvArr
The source array, single-channel or multi-channel with COI set. - minVal
- Type: SystemDouble
Pointer to returned minimum value. - maxVal
- Type: SystemDouble
Pointer to returned maximum value. - minLoc
- Type: OpenCvSharpCvPoint
Pointer to returned minimum location. - maxLoc
- Type: OpenCvSharpCvPoint
Pointer to returned maximum location.
See Also