CvToolboxGetMinMax Method |
http://www.emgu.com
Compute the minimum and maximum value from the points
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic static void GetMinMax(
IEnumerable<MCvPoint3D64f> points,
out MCvPoint3D64f min,
out MCvPoint3D64f max
)
Public Shared Sub GetMinMax (
points As IEnumerable(Of MCvPoint3D64f),
<OutAttribute> ByRef min As MCvPoint3D64f,
<OutAttribute> ByRef max As MCvPoint3D64f
)
public:
static void GetMinMax(
IEnumerable<MCvPoint3D64f>^ points,
[OutAttribute] MCvPoint3D64f% min,
[OutAttribute] MCvPoint3D64f% max
)
static member GetMinMax :
points : IEnumerable<MCvPoint3D64f> *
min : MCvPoint3D64f byref *
max : MCvPoint3D64f byref -> unit
Parameters
- points
- Type: System.Collections.GenericIEnumerableMCvPoint3D64f
The points - min
- Type: Emgu.CV.StructureMCvPoint3D64f
The minimum x,y,z values - max
- Type: Emgu.CV.StructureMCvPoint3D64f
The maximum x,y,z values
See Also