You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
OS Version: Ubuntu 24.04
rviz version: ros2 jazzy
Compiler name and version number: Ubuntu clang version 18.1.3
Source or binary build?
source build
build options: --mixin asan-gcc
Description
The function rviz_default_plugins::ogreQuaternionAngularDistance is designed to compute the angular distance between two quaternions. However, the implementation implicitly assumes that the input quaternions are normalized (unit quaternions), without validating or normalizing them internally. As a result, if non-normalized quaternions are passed as input, the function may return incorrect angle values.
[==========] Running 1 test from 1 test suite.
[----------] Global test environment set-up.
[----------] 1 test from QuaternionHelper
[ RUN ] QuaternionHelper.ogreQuaternionHelper_validates_non_standardized_inputs
/home/shangzh/ros2_jazzy/src/ros2/rviz/rviz_default_plugins/test/rviz_default_plugins/displays/odometry/quaternion_helper_test.cpp:12: Failure
Value of: rviz_default_plugins::ogreQuaternionAngularDistance(quaternion1, quaternion2)
Expected: is approximately 1.5707964 (absolute error <= 0.001)
Actual: 3.14159274 (of type float), which is 1.5708 from 1.5708
[ FAILED ] QuaternionHelper.ogreQuaternionHelper_validates_non_standardized_inputs (0 ms)
[----------] 1 test from QuaternionHelper (0 ms total)
[----------] Global test environment tear-down
[==========] 1 test from 1 test suite ran. (0 ms total)
[ PASSED ] 0 tests.
[ FAILED ] 1 test, listed below:
[ FAILED ] QuaternionHelper.ogreQuaternionHelper_validates_non_standardized_inputs
1 FAILED TEST
Expected behavior
The function should return the correct angular distance even when the input quaternions are not normalized, or it should explicitly enforce that the inputs must be unit quaternions (either via normalization or input validation).
Actual behavior
The function does not normalize or validate the input quaternions before performing the computation. As a result, when non-unit quaternions are used, the calculated angle is incorrect. In the test case above, the result is π instead of the expected π/2.
Additional information
Suggested Fixes
1.Automatically normalize inputs (recommended):
Add normalization inside the function to ensure valid input:
first.normalise();
second.normalise();
2.Add input validation:
If normalization is avoided for performance reasons, assert or throw an error when non-normalized inputs are detected:
assert(fabs(first.normalise() - 1.0f) < 1e-3 && "Input quaternion must be normalized.");
The text was updated successfully, but these errors were encountered:
Operating System:
Linux shangzh-VMware-Virtual-Platform 6.11.0-19-generic #19~24.04.1-Ubuntu SMP PREEMPT_DYNAMIC Mon Feb 17 11:51:52 UTC 2 x86_64 x86_64 x86_64 GNU/Linux
ROS version or commit hash:
ros2 jazzy
RMW implementation (if applicable):
No response
RMW Configuration (if applicable):
No response
Client library (if applicable):
rviz
'ros2 doctor --report' output
ros2 doc --report
Steps to reproduce issue
Environment
OS Version: Ubuntu 24.04
rviz version: ros2 jazzy
Compiler name and version number: Ubuntu clang version 18.1.3
Source or binary build?
source build
build options: --mixin asan-gcc
Description
The function rviz_default_plugins::ogreQuaternionAngularDistance is designed to compute the angular distance between two quaternions. However, the implementation implicitly assumes that the input quaternions are normalized (unit quaternions), without validating or normalizing them internally. As a result, if non-normalized quaternions are passed as input, the function may return incorrect angle values.
Test Case
Output
Expected behavior
The function should return the correct angular distance even when the input quaternions are not normalized, or it should explicitly enforce that the inputs must be unit quaternions (either via normalization or input validation).
Actual behavior
The function does not normalize or validate the input quaternions before performing the computation. As a result, when non-unit quaternions are used, the calculated angle is incorrect. In the test case above, the result is π instead of the expected π/2.
Additional information
Suggested Fixes
1.Automatically normalize inputs (recommended):
Add normalization inside the function to ensure valid input:
2.Add input validation:
If normalization is avoided for performance reasons, assert or throw an error when non-normalized inputs are detected:
assert(fabs(first.normalise() - 1.0f) < 1e-3 && "Input quaternion must be normalized.");
The text was updated successfully, but these errors were encountered: