http://www.emgu.com
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Rotate the points in pointsSrc and save the result in pointsDst. Inplace operation is supported (pointsSrc == pointsDst).
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 2.3.0.1416 (2.3.0.1416)
Syntax
C# |
---|
public void RotatePoints( Matrix<double> pointsSrc, Matrix<double> pointsDst ) |
Visual Basic |
---|
Public Sub RotatePoints ( _ pointsSrc As Matrix(Of Double), _ pointsDst As Matrix(Of Double) _ ) |
Visual C++ |
---|
public: void RotatePoints( Matrix<double>^ pointsSrc, Matrix<double>^ pointsDst ) |
Parameters
- pointsSrc
- Type: Emgu.CV..::..Matrix<(Of <(<'Double>)>)>
The points to be rotated
- pointsDst
- Type: Emgu.CV..::..Matrix<(Of <(<'Double>)>)>
The result of the rotation, should be the same size as pointsSrc, can be pointsSrc as well for inplace rotation