RotationMatrix2DRotatePointsTDepth Method (MatrixTDepth) |
http://www.emgu.com
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.CVAssembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntaxpublic 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
)
member RotatePoints :
points : Matrix<'TDepth> -> unit when 'TDepth : new()
Parameters
- points
- Type: Emgu.CVMatrixTDepth
The N 2D-points to be rotated
Type Parameters
- TDepth
- The depth of the points, must be double or float
See Also