Click or drag to resize
Quaternions Constructor
http://www.emgu.com
Create a quaternion with the specific values

Namespace: Emgu.CV
Assembly: Emgu.CV.World (in Emgu.CV.World.dll) Version: 3.1.0.2282 (3.1.0.2282)
Syntax
public Quaternions(
	double w,
	double x,
	double y,
	double z
)

Parameters

w
Type: SystemDouble
The W component of the quaternion: the value for cos(rotation angle / 2)
x
Type: SystemDouble
The X component of the vector: rotation axis * sin(rotation angle / 2)
y
Type: SystemDouble
The Y component of the vector: rotation axis * sin(rotation angle / 2)
z
Type: SystemDouble
The Z component of the vector: rotation axis * sin(rotation angle / 2)
See Also