对四元数最形象的理解外文

来源:互联网 发布:java好难 编辑:程序博客网 时间:2024/05/06 16:26

Understanding Quaternions

Understanding Quaternions

Understanding Quaternions

In this article I will attempt to explain the concept of Quaternions in an easy to understand way. I will explain how you might visualize a Quaternion as well as explain the different operations that can be applied to quaternions. I will also compare applications of matrices, euler angles, and quaternions and try to explain when you would want to use quaterions instead of Euler angles or matrices and when you would not.

Table of Contents

  1. Introduction
  2. Complex Numbers
    1. Adding and Subtracting Complex Numbers
    2. Multiply a Complex Number by a Scalar
    3. Product of Complex Numbers
    4. Square of Complex Numbers
    5. Complex Conjugate
    6. Absolute Value of a Complex Number
    7. Quotient of Two Complex Numbers
  3. Powers of i
  4. The Complex Plane
    1. Rotors
  5. Quaternions
    1. Quaternions as an Ordered Pair
    2. Adding and Subtracting Quaternions
    3. Quaternion Products
    4. A Real Quaternion
    5. Multiplying a Quaternion by a Scalar
    6. Pure Quaternions
    7. Additive Form of a Quaternion
    8. Unit Quaternion
    9. Binary Form of a Quaternion
    10. Quaternion Conjugate
    11. Quaternion Norm
    12. Quaternion Normalization
    13. Quaternion Inverse
    14. Quaternion Dot Product
  6. Rotations
  7. Quaternion Interpolation
    1. SLERP
      1. Quaternion Difference
      2. Quaternion Exponentiation
      3. Fractional Difference of Quaternions
      4. Considerations
    2. SQUAD
  8. Conclusion
  9. Download the Demo
  10. Reference
 
DISCLAIMER: You cannot fully understand quaternions in just 45 minutes.
This article is extremely math intensive and is not intended for the weak-hearted.

Introduction

In computer graphics, we use transformation matrices to express a position in space (translation) as well as its orientation in space (rotation). Optionally, a single transformation matrix can also be used to express the scale or “shear” of an object. We can think of this transformation matrix as a “basis space” where if you multiply a vector or a point (or even another matrix) by a transformation matrix you “transform” that vector, point or matrix into the space represented by that matrix.

In this article, I will not discuss the details of transformation matrices. For a detailed description of transformation matrices, you can refer to my previous article titled Matrices.

In this article, I want to discuss an alternative method of describing the orientation of an object (rotation) in space using quaternions.

The concept of quaterinions was realized by the Irish mathematician Sir William Rowan Hamilton on Monday October 16th 1843 in Dublin, Ireland. Hamilton was on his way to theRoyal Irish Academy with his wife and as he was passing over the Royal Canal on theBrougham Bridge he made a dramatic realization that he immediately carved into the stone of the bridge.

William Rowan Hamilton Plaque on Broome Bridge on the Royal Canal commemorating his discovery of the fundamental formula for quaternion multiplication.

Complex Numbers

Before we can fully understand quaterions, we must first understand where they came from. The root of quaternions is based on the concept of the complex number system.

In addition to the well-known number sets (Natural, Integer, Real, and Rational), the Complex Number system introduces a new set of numbers called imaginary numbers. Imaginary numbers were invented to solve certain equations that had no solutions such as:

To solve this expression, we must state that  which we know is not possible because the square of any number (positive or negative) is always positive.

Mathematicians generally can’t accept that an expression does not have a solution so a new term was invented called the imaginary number that can be used to solve such equations.

The imaginary number has the form:

Don’t try to actually understand this term as there is no logical reason why it exists. We just have to accept that  is just something that squares to .

The set of imaginary numbers can be represented by .

The set of complex numbers (represented by the symbol ) is the sum of a real number and an imaginary number and has the form:

It could also be stated that all Real numbers are complex numbers with  and all imaginary numbers are complex numbers with .

Adding and Subtracting Complex Numbers

Complex numbers can be added and subtracted by adding or subtracting the real, and imaginary parts.

Addition:

Subtraction:

Multiply a Complex Number by a Scalar

A complex number is multiplied by a scalar by multiplying each term of the complex number by the scalar:

Product of Complex Numbers

Complex numbers can also be multiplied by applying normal algebraic rules.

Square of Complex Numbers

A complex number can also be squared by multiplying by itself:

Complex Conjugate

The conjugate of a complex number is a complex number with the imaginary part negated and is denoted as either  or .

The product of a complex number and its conjugate gives a special result.

Absolute Value of a Complex Number

We can use the conjugate of a complex number to compute the absolute value (or norm, or magnitude) of a complex number. The absolute value of a complex number is the square-root of the complex number multiplied by its conjugate and is denoted :

Quotient of Two Complex Numbers

To compute the quotient of two complex numbers, we multiply the numerator and denominator by the complex conjugate of the denominator.

Powers of i

If we state that  then it should be possible to raise i to other powers as well.

If we keep writing this sequence, we will see a pattern emerge .

A similar pattern emerges from the increasing negative powers.

You may have seen a similar pattern in mathematics before but in the form  which is generated by rotating a point 90 degrees counter-clockwise on a 2D Cartesian plane and the sequence  is generated by rotating a point 90 degrees clockwise on a 2D Cartesian plane.

Cartesian Plane

Cartesian Plane

The Complex Plane

We can also map complex numbers in a 2D grid called the Complex Plane by mapping the Real part on the horizontal axis and the Imaginary part on the vertical axis.

Complex Plane

Complex Plane

As shown in the previous sequence, we can say that if we multiply a complex number by i, we can rotate the complex number through the complex plane at 90 degree increments.

Let’s see if this is true. We’ll take an arbitrary point p in the complex plane:

and we multiply it by i gives q:

Multiplying q by i gives r:

And multiplying r by i gives s:

And multiplying s by i gives t:

Which is exactly what we started with (p). If we plot these complex numbers on the complex plane, we get the following result.

Complex Numbers on the Complex Plane

Complex Numbers on the Complex Plane

We can also rotate clock-wise in the complex plane by multiplying the complex number by-i.

Rotors

We can also perform arbitrary rotations in the complex plane by defining a complex number of the form:

Multiplying any complex number by the rotor q produces the general formula:

Which can also be written in matrix form:

Which is the method to rotate an arbitrary point in the complex plane counter-clockwise about the origin.

Quaternions

With this knowledge of the complex number system and the complex plane, we can extend this to 3-dimensional space by adding two imaginary numbers to our number system in addition to i.

The general form to express quaternions is

Were, according to Hamilton’s famous expression:

and

You may have noticed that the relationship between ij, and k are very similar to the cross product rules for the unit cartesian vectors:

Hamilton also recognized that the ij, and k imaginary numbers could be used to represent three cartesian unit vectors ij, and k with the same properties of imaginary numbers, such that .

Visualizing the properties of ij, jk, ki

Visualizing the Properties of ij, jk, ki

The image above visualizes the relationship between the cartesian unit vectors represented by ij, and k.

Quaternions as an Ordered Pair

We can also represent quaternions as an ordered pair:

Where v can also be represented by its individual components:

Using this notation, we can more easily show the similarities between quaternions and complex numbers.

Adding and Subtracting Quaternions

Quaternions can be added and subtracted similar to complex numbers:

Quaternion Products

We can also express the product of two quaternions:

Which results in another quaternion. If we replace the imaginary numbers ij, and k in the previous expression by the ordered pairs (also known as the quaternion units),

And substituting back to the original expression together with  gives:

And expanding this expression into a sum of ordered pairs gives:

If we multiply through with the quaternion unit and extract the common vector components, we can rewrite this equation in this way:

This equation gives us the sum of two ordered pairs. The first ordered pair is a Realquaternion and the second is a Pure quaternion. These two ordered pairs can be combined into a single ordered pair:

And if we substitute,

We get:

Which is the general equation of a quaternion product.

A Real Quaternion

Real Quaternion is a quaternion with a vector term of 0:

And the product of two Real Quaternions is another Real Quaternion:

Which is similar to the product of two complex numbers that contain a zero imaginary term.

Multiplying a Quaternion by a Scalar

We can also multiply a quaternion by a scalar which should obey the rule:

We can confirm this by using the product or Real Quaterions shown above to multiply a quaternion by the scalar as a Real Quaternion:

Pure Quaternions

Similar to Real Quaterions, Hamilton also defined the Pure Quaternion as a quaternion that has a zero scalar term:

Or, written in its component parts:

And we can also take the product of two Pure quaternions:

According to the quaternion product rule shown above.

Additive Form of a Quaternion

We can also express quaternions as an addition of the Real and Pure quaternion parts:

Unit Quaternion

Given an arbitrary vector v, we can express this vector in both its scalar magnitude and its direction as such:

And combining this definition with the definition of a pure quaternion gives:

And we can also describe a unit quaternion that has a zero scalar and a unit vector as such:

Binary Form of a Quaternion

We can now combine the definitions of the unit quaternion and the additive form of a quaternion, we can create a representation of quaternions which is similar to the notation used to describe complex numbers:

This gives us a way to represent the quaternion that is very similar to complex numbers:

Quaternion Conjugate

The quaternion conjugate can be computed by negating the vector part of the quaternion:

And the product of a quaternion with its conjugate gives:

Quaternion Norm

If you recall from the definition of the norm of a complex number:

Similarly, the norm (or magnitude) of a quaternion is defined as:

Which allows us to express the norm of a quaternion as:

Quaternion Normalization

With the definition of a quaternion norm, we can use it to normalize a quaternion. A quaternion is normalized by dividing it by :

As an example, let’s normalize the quaternion:

First, we must compute the norm of the quaternion:

Then, we must divide the quaternion by the norm of the quaternion to compute the normalized quaternion:

Quaternion Inverse

The inverse of a quaternion is denoted . To compute the inverse of a quaternion, we take the conjugate of the quaternion and divide it by the square of the norm:

To show this, we can take the fact that by definition of the inverse:

And multiply both sides by the conjugate of the quaternion gives:

And by substitution we get:

And for unit-norm quaternions whose norm is 1, we can write:

Quaternion Dot Product

Similar to vector dot-products, we can also compute the dot product between two quaternions by multiplying the corresponding scalar parts and summing the results:

We can also use the quaternion dot-product to compute the angular difference between the quaternions:

And for unit-norm quaternions, we can simplify the equation:

Rotations

If you recall we defined a special form of the complex number called a Rotor that could be used to rotate a point through the 2D complex plane as:

Then by its similarities to complex numbers, it should be possible to express a quaternion that can be used to rotate a point in 3D-space as such:

Let’s test if this theory holds by computing the product of the quaternion q and the vectorp. First, we can express p as a Pure quaternion in the form:

And q is a unit-norm quaternion in the form:

Then,

We see that the result is a general quaternion with both a scalar and a vector parts.

Let’s first consider the “special” case where p is perpendicular to  in which case, the dot-product term  and the result becomes the Pure quaternion:

In this case, to rotate p about  we just substitute  and .

As an example, let’s rotate a vector p 45° about the z-axis then our quaternion q is:

And let’s take a vector p that adheres to the special case that p is perpendicular to k:

Now let’s find the product of qp:

Which results in a Pure quaternion that is rotated 45° about the k axis.
We can also confirm that the magnitude of the resulting vector is maintained:

Which is exactly the result we expected!

We can visualize this by the following image:

Quaternion Rotation (1)

Quaternion Rotation (1)

Now let’s consider a quaternion that is not orthogonal to p. If we specify the vector part of our quaternion to 45° offset from p we get:

And multiplying our point p by q we get:

And substituting p and  gives:

Which is no longer a pure quaternion, and it has not been rotated 45° and the vector’s norm is no longer 2 (instead it has been reduced to ).

This result can be visualized by the image.

Quaternion Rotation (2)

Quaternion Rotation (2)

Technically, it’s incorrect to represent the quaternion p’ in 3D space because it’s actually a 4D vector! For the sake of simplicity, I will only visualize the vector component of quaternions.

However, all is not lost. Hamilton recognized (but didn’t publish) that if we post-multiply the result of qp by the inverse of q then the result is a pure quaternion and the norm of the vector component is maintained. Let’s see if we can apply this to our example.

First, let’s compute :

For  gives:

And combining the previous value of qp and  gives:

Which is a pure quaternion and the norm of the result is:

which is the same as p so the norm of the vector is maintained.

The image below visualizes the result of the rotation.

Quaternion Rotation (3)

Quaternion Rotation (3)

So we can see that the result is a pure quaternion and that the norm of the initial vector is maintained, but the vector has been rotated 90° rather than 45° which is twice as much as desired! So in order to correctly rotate a vector p by an angle  about an arbitrary axis , we must consider the half-angle and construct the following quaternion:

Which is the general form of a rotation quaternion!

Quaternion Interpolation

One of the most important reasons for using quaternions in computer graphics is that quaternions are very good at representing rotations in space. Quaternions overcome the issues that plague other methods of rotating points in 3D space such as Gimbal lockwhich is an issue when you represent your rotation with eular angles.

Using quaternions, we can define several methods that represents a rotational interpolation in 3D space. The first method I will examine is called SLERP which is used to smoothly interpolate a point between two orientations. The second method is an extension of SLERP called SQAD which is used to interpolate through a sequence of orientations that define a path.

SLERP

SLERP stands for Spherical Linear Interpolation. SLERP provides a method to smoothly interpolate a point about two orientations.

I will represent the first orientation as  and the second orientation as . The point that is interpolated will be prepresented by  and the interpolated point will be represented by . The interpolation parameter  will interpolate  from  when  to  when .

The standard linear interpolation formula is:

The general steps to apply this equation are:

  • Compute the difference between  and .
  • Take the fractional part of that difference.
  • Adjust the original value by the fractional difference between the two points.

We can use the same basic principle to interpolate between two quaternion orientations.

QUATERNION DIFFERENCE

The first step dictates that we must compute the difference between  and . With regards to quaternions, this is equivalent to computing the angular difference between the two quaternions.

QUATERNION EXPONENTIATION

The next step is to take the fractional part of that difference. We can compute the fractional part of a quaternion by raising it to a power whose value is in the range 0…1.

The general formula for quaternion exponentiation is:

Where the exponential function for quaternions is given by:

And the logarithm of a quaternion is given by:

For t=0, we have:

And for t=1, we have:

FRACTIONAL DIFFERENCE OF QUATERNIONS

And to compute the interpolated angular rotation, we adjust the original orientation  and adjust it by the fractional part of the difference between  and .

Which is the general form of spherical linear interpolation using quaternions. However, this is not the form of the slerp equation that is commonly used in practice.

We can apply a similar formula for performing a spherical interpolation of vectors to quaternions. The general form of a spherical interpolation for vectors is defined as:

This is visualized in the following image.

Quaternion Interpolation

Quaternion Interpolation

This formula can be applied unmodified to quaternions:

And we can obtain the angle  by computing the dot-product between  and .

CONSIDERATIONS

There are two issues with this implementation which must be taken into consideration during implementation.

First, if the quaternion dot-product results in a negative value, then the resulting interpolation will travel the “long-way” around the 4D sphere which is not necessarily what we want. To solve this problem, we can test the result of the dot product and if it is negative, then we can negate one of the orientations. Negating the scalar and the vector part of the quaternion does not change the orientation that it represents but by doing this we guarantee that the rotation will be applied in the “shortest” path.

The other problem arises when the angular difference between  and  is very small then becomes 0. If this happens, then we will get an undefined result when we divide by . In this case, we can fall-back to using linear interpolation between  and .

SQUAD

Just as a SLERP can be used to compute an interpolation between two quaternions, aSQUAD (Spherical and Quadrangle) can be used to smoothly interpolate over a path of rotations.

If we have the sequence of quaternions:

And we also define the “helper” quaternion () which we can consider an intermediate control point:

Then the orientation along the sub-cuve defined by:

at time t is given by:

Conclusion

Besides being extremely difficult to understand, quaternions provide a few obvious advantages over using matrices or Euler angles for representing rotations.

  • Quaternion interpolation using SLERP and SQUAD provide a way to interpolate smoothly between orientations in space.
  • Rotation concatenation using quaternions is faster than combining rotations expressed in matrix form.
  • For unit-norm quaternions, the inverse of the rotation is taken by subtracting the vector part of the quaternion. Computing the inverse of a rotation matrix is considerably slower if the matrix is not orthonormalized (if it is, then it’s just the transpose of the matrix).
  • Converting quaternions to matrices is slightly faster than for Euler angles.
  • Quaternions only require 4 numbers (3 if they are normalized. The Real part can be computed at run-time) to represent a rotation where a matrix requires at least 9 values.

However for all of the advantages in favor of using quaternions, there are also a few disadvantages.

  • Quaternions can become invalid because of floating-point round-off error however this “error creep” can be resolved by re-normalizing the quaternion.
  • And probably the most significant deterrent for using quaternions is that they are very hard to understand. I hope that this issue is resolved after reading this article.

There are several math libraries that implement quaternions and a few of those libraries implement quaternions correctly. In my personal experience, I find GLM (OpenGL Math Library) to be a good math library with a good implementation of quaternions. If you are interested in using quaternions in your own applications, this is the library I would recommend.

Download the Demo

I created a small demo that demonstrates how a quaternion is used to rotate an object in space. The demo was created with Unity 3.5.2 which you can download for free and view the demo script files. The zip file also contains a Windows binary executable but Using Unity, you can also generate a Mac application (and Unity 4 introduces Linux builds as well).

Understanding Quaternions.zip

0 0
原创粉丝点击