Returns the min / max location and values for the image

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

Syntax

C#
public void MinMax(
	out double[] minValues,
	out double[] maxValues,
	out Point[] minLocations,
	out Point[] maxLocations
)
Visual Basic (Declaration)
Public Sub MinMax ( _
	<OutAttribute> ByRef minValues As Double(), _
	<OutAttribute> ByRef maxValues As Double(), _
	<OutAttribute> ByRef minLocations As Point(), _
	<OutAttribute> ByRef maxLocations As Point() _
)
Visual C++
public:
virtual void MinMax(
	[OutAttribute] array<double>^% minValues, 
	[OutAttribute] array<double>^% maxValues, 
	[OutAttribute] array<Point>^% minLocations, 
	[OutAttribute] array<Point>^% maxLocations
) sealed

Parameters

minValues
Type: array< System..::.Double >[]()[] %
The minimum values for each channel
maxValues
Type: array< System..::.Double >[]()[] %
The maximum values for each channel
minLocations
Type: array< System.Drawing..::.Point >[]()[] %
The minimum locations for each channel
maxLocations
Type: array< System.Drawing..::.Point >[]()[] %
The maximum locations for each channel

Implements

IImage..::.MinMax(array<Double>[]()[]%, array<Double>[]()[]%, array<Point>[]()[]%, array<Point>[]()[]%)

See Also