MatrixTDepthMinMax Method |
http://www.emgu.com
Returns the min / max locations and values for the matrix
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
Syntaxpublic void MinMax(
out double minValue,
out double maxValue,
out Point minLocation,
out Point maxLocation,
IInputArray mask = null
)
Public Sub MinMax (
<OutAttribute> ByRef minValue As Double,
<OutAttribute> ByRef maxValue As Double,
<OutAttribute> ByRef minLocation As Point,
<OutAttribute> ByRef maxLocation As Point,
Optional mask As IInputArray = Nothing
)
public:
void MinMax(
[OutAttribute] double% minValue,
[OutAttribute] double% maxValue,
[OutAttribute] Point% minLocation,
[OutAttribute] Point% maxLocation,
IInputArray^ mask = nullptr
)
member MinMax :
minValue : float byref *
maxValue : float byref *
minLocation : Point byref *
maxLocation : Point byref *
?mask : IInputArray
(* Defaults:
let _mask = defaultArg mask null
*)
-> unit
Parameters
- minValue
- Type: SystemDouble
The minimum value - maxValue
- Type: SystemDouble
The maximum value - minLocation
- Type: System.DrawingPoint
The minimum location - maxLocation
- Type: System.DrawingPoint
The maximum location - mask (Optional)
- Type: Emgu.CVIInputArray
The optional mask
See Also