Rotate the image the specified angle cropping the result to the original size
Namespace:
Emgu.CV
Assembly:
Emgu.CV (in Emgu.CV.dll) Version: 2.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public Image<TColor, TDepth> Rotate(
double angle,
TColor background
) |
Visual Basic (Declaration) |
---|
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