Click or drag to resize
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.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public void RotatePoints(
	Matrix<double> pointsSrc,
	Matrix<double> pointsDst
)

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