http://www.emgu.com
Create a RotatedRect structure with the specific parameters
Namespace: Emgu.CV.StructureAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic RotatedRect(
PointF center,
SizeF size,
float angle
)
Public Sub New (
center As PointF,
size As SizeF,
angle As Single
)
public:
RotatedRect(
PointF center,
SizeF size,
float angle
)
new :
center : PointF *
size : SizeF *
angle : float32 -> RotatedRect
Parameters
- center
- Type: System.DrawingPointF
The center of the box - size
- Type: System.DrawingSizeF
The size of the box - angle
- Type: SystemSingle
The angle of the box in degrees. Possitive value means counter-clock wise rotation
See Also