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 void MinMaxLoc( out double minVal, out double maxVal, out CvPoint minLoc, out CvPoint maxLoc, CvArr mask )
Parameters
- 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. - mask
- Type: OpenCvSharpCvArr
The optional mask that is used to select a subarray.
See Also