mirror of
https://github.com/ceres-solver/ceres-solver.git
synced 2026-08-29 16:40:38 +08:00
Fix a bug in QuaternionRotatePoint.
In https://ceres-solver-review.git.corp.google.com/c/ceres-solver/+/23802 the computation of the norm of a quaternion scale = 1/sqrt(q[0] * q[0] + q[1] * q[1] + q[2] * q[2] + q[3] * q[3]); was replaced by scale = 1/hypot(q[0], q[1], hypot(q[2], q[3])); while this appear to be a more accurate computation because of the use of hypot which can handle over and underflow it introduces a bug for the case where q[2] = q[3] = 0. While the hypot(q[2], q[3]) == 0 as scalars, if q[2] and q[3] are jets, then the derivative will be NaN. Which means that even though q[0] or q[1] is non-zero and the norm of the quaternion is non-zero, and the resulting derivative is finite, this way of computing the scale will produce nans in the derivative of scale. The following quaternion will replicate the problem described above. using Jet = ceres::Jet<double, 4>; std::array<Jet, 4> quaternion = {Jet(1.0, 0), Jet(0.0, 1), Jet(0.0, 2), Jet(0.0, 3)}; This CL reverts the change to QuaternionRotatePoint and adds a test for it. Thanks to Jonathan Taylor for reproducing this bug. Change-Id: I0fbbcc77d6945a38563d82efba4429f4b5278cd5
This commit is contained in:
@@ -743,10 +743,10 @@ inline void UnitQuaternionRotatePoint(const T q[4],
|
||||
template <typename T>
|
||||
inline void QuaternionRotatePoint(const T q[4], const T pt[3], T result[3]) {
|
||||
DCHECK_NE(pt, result) << "Inplace rotation is not supported.";
|
||||
using std::hypot;
|
||||
|
||||
// 'scale' is 1 / norm(q).
|
||||
const T scale = T(1) / hypot(q[0], q[1], hypot(q[2], q[3]));
|
||||
const T scale =
|
||||
T(1) / sqrt(q[0] * q[0] + q[1] * q[1] + q[2] * q[2] + q[3] * q[3]);
|
||||
|
||||
// Make unit-norm version of q.
|
||||
const T unit[4] = {
|
||||
|
||||
Reference in New Issue
Block a user