tfg.geometry.transformation.quaternion.relative_angle

Computes the unsigned relative rotation angle between 2 unit quaternions.

Given two normalized quanternions q1 and q2, the relative angle is computed as θ=2arccos(q1Tq2).

In the following, A1 to An are optional batch dimensions.

quaternion1 A tensor of shape [A1, ..., An, 4], where the last dimension represents a normalized quaternion.
quaternion2 A tensor of shape [A1, ..., An, 4], where the last dimension represents a normalized quaternion.
name A name for this op that defaults to "quaternion_relative_angle".

A tensor of shape [A1, ..., An, 1] where the last dimension represents rotation angles in the range [0.0, pi].

ValueError If the shape of quaternion1 or quaternion2 is not supported.