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.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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