Click or drag to resize
CvToolboxGetMinMax Method
http://www.emgu.com
Compute the minimum and maximum value from the points

Namespace: Emgu.CV.Util
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public static void GetMinMax(
	IEnumerable<MCvPoint3D64f> points,
	out MCvPoint3D64f min,
	out MCvPoint3D64f max
)

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