Calculates vertices of the input 2d box.

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

Syntax

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

Parameters

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

See Also