ImageTColor, TDepthMinMax Method |
http://www.emgu.com
Returns the min / max location and values for the image
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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:
void MinMax(
[OutAttribute] array<double>^% minValues,
[OutAttribute] array<double>^% maxValues,
[OutAttribute] array<Point>^% minLocations,
[OutAttribute] array<Point>^% maxLocations
)
member 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
See Also