Rotate the points in pointsSrc and save the result in pointsDst. Inplace operation is supported (pointsSrc == pointsDst).

Namespace:  Emgu.CV
Assembly:  Emgu.CV (in Emgu.CV.dll) Version: 2.1.0.793 (2.1.0.793)

Syntax

         
 C#  Visual Basic  Visual C++ 
public void RotatePoints(
	Matrix<double> pointsSrc,
	Matrix<double> pointsDst
)
Public Sub RotatePoints ( _
	pointsSrc As Matrix(Of Double), _
	pointsDst As Matrix(Of Double) _
)
public:
void RotatePoints(
	Matrix<double>^ pointsSrc, 
	Matrix<double>^ pointsDst
)

Parameters

pointsSrc
Matrix<(Of <(Double>)>)
The points to be rotated
pointsDst
Matrix<(Of <(Double>)>)
The result of the rotation, should be the same size as pointsSrc, can be pointSrc as well for inplace rotation

See Also