Create a MCvBox2D structure with the specific parameters

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

Syntax

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

Parameters

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

See Also