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.CV
Assembly:
Emgu.CV.Platform.NetStandard (in Emgu.CV.Platform.NetStandard.dll) Version: 4.3.0.3890
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