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.2.1.1150 (2.2.1.1150)

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 pointsSrc as well for inplace rotation

See Also