Rotate the single channel Nx2 matrix where N is the number of 2D points. The value of the matrix is changed after rotation.

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<TDepth>(
	Matrix<TDepth> points
)
where TDepth : new()
Public Sub RotatePoints(Of TDepth As New) ( _
	points As Matrix(Of TDepth) _
)
public:
generic<typename TDepth>
where TDepth : gcnew()
void RotatePoints(
	Matrix<TDepth>^ points
)

Parameters

points
Matrix<(Of <(<'TDepth>)>)>
The N 2D-points to be rotated

Type Parameters

TDepth
The depth of the points, must be fouble or float

See Also