Click or drag to resize

CvInvokeMinEnclosingTriangle Method

http://www.emgu.com
Finds a triangle of minimum area enclosing a 2D point set and returns its area.

Namespace:  Emgu.CV
Assembly:  Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntax
public static double MinEnclosingTriangle(
	IInputArray points,
	IOutputArray triangles
)

Parameters

points
Type: Emgu.CVIInputArray
Input vector of 2D points with depth CV_32S or CV_32F
triangles
Type: Emgu.CVIOutputArray
Output vector of three 2D points defining the vertices of the triangle. The depth of the OutputArray must be CV_32F.

Return Value

Type: Double
The triangle's area
See Also