Returns the min / max locations and values for the matrix

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void MinMax(
	out double minValue,
	out double maxValue,
	out Point minLocation,
	out Point maxLocation
)
Public Sub MinMax ( _
	<OutAttribute> ByRef minValue As Double, _
	<OutAttribute> ByRef maxValue As Double, _
	<OutAttribute> ByRef minLocation As Point, _
	<OutAttribute> ByRef maxLocation As Point _
)
public:
void MinMax(
	[OutAttribute] double% minValue, 
	[OutAttribute] double% maxValue, 
	[OutAttribute] Point% minLocation, 
	[OutAttribute] Point% maxLocation
)

Parameters

minValue
Double%

[Missing <param name="minValue"/> documentation for "M:Emgu.CV.Matrix`1.MinMax(System.Double@,System.Double@,System.Drawing.Point@,System.Drawing.Point@)"]

maxValue
Double%

[Missing <param name="maxValue"/> documentation for "M:Emgu.CV.Matrix`1.MinMax(System.Double@,System.Double@,System.Drawing.Point@,System.Drawing.Point@)"]

minLocation
Point%

[Missing <param name="minLocation"/> documentation for "M:Emgu.CV.Matrix`1.MinMax(System.Double@,System.Double@,System.Drawing.Point@,System.Drawing.Point@)"]

maxLocation
Point%

[Missing <param name="maxLocation"/> documentation for "M:Emgu.CV.Matrix`1.MinMax(System.Double@,System.Double@,System.Drawing.Point@,System.Drawing.Point@)"]

See Also