| MatMinMaxLoc Method (Double, Double) |
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 void MinMaxLoc(
out double minVal,
out double maxVal
)
Public Sub MinMaxLoc (
<OutAttribute> ByRef minVal As Double,
<OutAttribute> ByRef maxVal As Double
)
public:
void MinMaxLoc(
[OutAttribute] double% minVal,
[OutAttribute] double% maxVal
)
member MinMaxLoc :
minVal : float byref *
maxVal : float byref -> unit
Parameters
- minVal
- Type: SystemDouble
Pointer to returned minimum value - maxVal
- Type: SystemDouble
Pointer to returned maximum value
See Also