ImageTColor, TDepthRotate Method (Double, TColor) |
http://www.emgu.com
Rotate the image the specified angle cropping the result to the original size
Namespace: Emgu.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic 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
)
member Rotate :
angle : float *
background : 'TColor -> Image<'TColor, 'TDepth>
Parameters
- angle
- Type: SystemDouble
The angle of rotation in degrees. - background
- Type: TColor
The color with wich to fill the background
Return Value
Type:
ImageTColor,
TDepthThe image rotates by the specific angle
See Also