Create a MCvBox2D structure with the specific parameters

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

Syntax

C#
public MCvBox2D(
	PointF center,
	SizeF size,
	float angle
)
Visual Basic (Declaration)
Public Sub New ( _
	center As PointF, _
	size As SizeF, _
	angle As Single _
)
Visual C++
public:
MCvBox2D(
	PointF center, 
	SizeF size, 
	float angle
)

Parameters

center
Type: System.Drawing..::.PointF
The center of the box
size
Type: System.Drawing..::.SizeF
The size of the box
angle
Type: System..::.Single
The angle of the box in degrees. Possitive value means counter-clock wise rotation

See Also