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