Calculates vertices of the input 2d box.

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)

Syntax

C#
public static void cvBoxPoints(
	MCvBox2D box,
	float[] pt
)
Visual Basic (Declaration)
Public Shared Sub cvBoxPoints ( _
	box As MCvBox2D, _
	<OutAttribute> pt As Single() _
)
Visual C++
public:
static void cvBoxPoints(
	MCvBox2D box, 
	[OutAttribute] array<float>^ pt
)

Parameters

box
Type: Emgu.CV.Structure..::.MCvBox2D
The box
pt
Type: array< System..::.Single >[]()[]
An array of size 8, where the coordinate for ith point is: [pt[i>>1], pt[(i>>1)+1]]

See Also