QuaternionsRotatePoints Method |
http://www.emgu.com
Rotate the points in pointsSrc and save the result in pointsDst. In-place operation is supported (pointsSrc == pointsDst).
Namespace: Emgu.CVAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void RotatePoints(
Matrix<double> pointsSrc,
Matrix<double> pointsDst
)
Public Sub RotatePoints (
pointsSrc As Matrix(Of Double),
pointsDst As Matrix(Of Double)
)
public:
void RotatePoints(
Matrix<double>^ pointsSrc,
Matrix<double>^ pointsDst
)
member RotatePoints :
pointsSrc : Matrix<float> *
pointsDst : Matrix<float> -> unit
Parameters
- pointsSrc
- Type: Emgu.CVMatrixDouble
The points to be rotated - pointsDst
- Type: Emgu.CVMatrixDouble
The result of the rotation, should be the same size as pointsSrc, can be pointsSrc as well for inplace rotation
See Also