ImageTColor, TDepthRotate Method (Double, TColor) |
http://www.emgu.com
Rotate the image the specified angle cropping the result to the original size
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
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 which to fill the background
Return Value
Type:
ImageTColor,
TDepthThe image rotates by the specific angle
See Also