http://www.emgu.com
Create a RotatedRect structure with the specific parameters
Namespace:
Emgu.CV.Structure
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.0.3408 (4.1.0.3408)
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