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

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
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