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.0.1.0 (2.0.1.0)
Syntax
C# |
---|
public void RotatePoints<TDepth>(
Matrix<TDepth> points
)
where TDepth : new()
|
Visual Basic (Declaration) |
---|
Public Sub RotatePoints(Of TDepth As New) ( _
points As Matrix(Of TDepth) _
) |
Visual C++ |
---|
public:
generic<typename TDepth>
where TDepth : gcnew()
void RotatePoints(
Matrix<TDepth>^ points
) |
Type Parameters
- TDepth
- The depth of the points, must be fouble or float
See Also