ImageTColor, TDepthMinMax Method |
http://www.emgu.com
Returns the min / max location and values for the image
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void MinMax(
out double[] minValues,
out double[] maxValues,
out Point[] minLocations,
out Point[] maxLocations
)
Public Sub MinMax (
<OutAttribute> ByRef minValues As Double(),
<OutAttribute> ByRef maxValues As Double(),
<OutAttribute> ByRef minLocations As Point(),
<OutAttribute> ByRef maxLocations As Point()
)
public:
virtual void MinMax(
[OutAttribute] array<double>^% minValues,
[OutAttribute] array<double>^% maxValues,
[OutAttribute] array<Point>^% minLocations,
[OutAttribute] array<Point>^% maxLocations
) sealed
abstract MinMax :
minValues : float[] byref *
maxValues : float[] byref *
minLocations : Point[] byref *
maxLocations : Point[] byref -> unit
override MinMax :
minValues : float[] byref *
maxValues : float[] byref *
minLocations : Point[] byref *
maxLocations : Point[] byref -> unit
Parameters
- minValues
- Type: SystemDouble
The minimum values for each channel - maxValues
- Type: SystemDouble
The maximum values for each channel - minLocations
- Type: System.DrawingPoint
The minimum locations for each channel - maxLocations
- Type: System.DrawingPoint
The maximum locations for each channel
Implements
IImageMinMax(Double, Double, Point, Point)
See Also