http://www.emgu.com
Rotate the image the specified angle cropping the result to the original size
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public Image<TColor, TDepth> Rotate(
double angle,
TColor background
) |
Visual Basic |
---|
Public Function Rotate ( _
angle As Double, _
background As TColor _
) As Image(Of TColor, TDepth) |
Visual C++ |
---|
public:
Image<TColor, TDepth>^ Rotate(
double angle,
TColor background
) |
Parameters
- angle
- Type: System..::..Double
The angle of rotation in degrees.
- background
- Type: TColor
The color with wich to fill the background
Return Value
The image rotates by the specific angle
See Also