http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Compute the minimum and maximum value from the points
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public static void GetMinMax( IEnumerable<MCvPoint3D64f> points, out MCvPoint3D64f min, out MCvPoint3D64f max ) |
Visual Basic |
---|
Public Shared Sub GetMinMax ( _ points As IEnumerable(Of MCvPoint3D64f), _ <OutAttribute> ByRef min As MCvPoint3D64f, _ <OutAttribute> ByRef max As MCvPoint3D64f _ ) |
Visual C++ |
---|
public: static void GetMinMax( IEnumerable<MCvPoint3D64f>^ points, [OutAttribute] MCvPoint3D64f% min, [OutAttribute] MCvPoint3D64f% max ) |
Parameters
- points
- Type: System.Collections.Generic..::..IEnumerable<(Of <(<'MCvPoint3D64f>)>)>
The points
- min
- Type: Emgu.CV.Structure..::..MCvPoint3D64f%
The minimum x,y,z values
- max
- Type: Emgu.CV.Structure..::..MCvPoint3D64f%
The maximum x,y,z values