[This is preliminary documentation and is subject to change.]

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.0.0 (2.0.0.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public Image<TColor, TDepth> Rotate(
	double angle,
	TColor background
)
Public Function Rotate ( _
	angle As Double, _
	background As TColor _
) As Image(Of TColor, TDepth)
public:
Image<TColor, TDepth>^ Rotate(
	double angle, 
	TColor background
)

Parameters

angle
Double
The angle of rotation in degrees.
background
TColor
The color with wich to fill the background

Return Value

[Missing <returns> documentation for "M:Emgu.CV.Image`2.Rotate(System.Double,`0)"]

See Also