Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
catchQuaternion.cpp
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2024 by Inria. All rights reserved.
4 *
5 * This software is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 * See the file LICENSE.txt at the root directory of this source
10 * distribution for additional information about the GNU GPL.
11 *
12 * For using ViSP with software that can not be combined with the GNU
13 * GPL, please contact Inria about acquiring a ViSP Professional
14 * Edition License.
15 *
16 * See https://visp.inria.fr for more information.
17 *
18 * This software was developed at:
19 * Inria Rennes - Bretagne Atlantique
20 * Campus Universitaire de Beaulieu
21 * 35042 Rennes Cedex
22 * France
23 *
24 * If you have questions regarding the use of this file, please contact
25 * Inria at visp@inria.fr
26 *
27 * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28 * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29 *
30 * Description:
31 * Test quaternion interpolation.
32 */
33
39#include <visp3/core/vpConfig.h>
40
41#if defined(VISP_HAVE_CATCH2)
42
43#include <visp3/core/vpQuaternionVector.h>
44
45#include <catch_amalgamated.hpp>
46
47#ifdef ENABLE_VISP_NAMESPACE
48using namespace VISP_NAMESPACE_NAME;
49#endif
50
51TEST_CASE("Quaternion interpolation", "[quaternion]")
52{
53 const double angle0 = vpMath::rad(-37.14);
54 const double angle1 = vpMath::rad(57.96);
55 vpColVector axis({ 1.2, 6.4, -3.7 });
56 axis.normalize();
57 const vpThetaUVector tu0(angle0 * axis);
58 const vpThetaUVector tu1(angle1 * axis);
59 const vpQuaternionVector q0(tu0);
60 const vpQuaternionVector q1(tu1);
61 const double t = 0.5;
62
63 const double ref_angle_middle = t * (angle0 + angle1);
64 const double margin = 1e-3;
65 const double marginLerp = 1e-1;
66
67 // From:
68 // https://github.com/google/mathfu/blob/a75f852f2d76f6f14d5697e0d09ce509a2e3bfc6/unit_tests/quaternion_test/quaternion_test.cpp#L319-L329
69 // This will verify that interpolating two quaternions corresponds to interpolating the angle.
70 SECTION("LERP")
71 {
73 CHECK(vpThetaUVector(qLerp).getTheta() == Catch::Approx(ref_angle_middle).margin(marginLerp));
74 }
75
76 SECTION("NLERP")
77 {
79 CHECK(vpThetaUVector(qNlerp).getTheta() == Catch::Approx(ref_angle_middle).margin(margin));
80 }
81
82 SECTION("SERP")
83 {
85 CHECK(vpThetaUVector(qSlerp).getTheta() == Catch::Approx(ref_angle_middle).margin(margin));
86 }
87}
88
89TEST_CASE("Quaternion operators", "[quaternion]")
90{
91
92 SECTION("Addition and subtraction")
93 {
94 const vpQuaternionVector q1(2.1, -1, -3.7, 1.5);
95 const vpQuaternionVector q2(0.5, 1.4, 0.7, 2.5);
96 const vpQuaternionVector q3 = q1 + q2;
97 const double margin = std::numeric_limits<double>::epsilon();
98 std::cout << "q3=" << q3 << std::endl;
99 CHECK(q3.x() == Catch::Approx(2.6).margin(margin));
100 CHECK(q3.y() == Catch::Approx(0.4).margin(margin));
101 CHECK(q3.z() == Catch::Approx(-3.0).margin(margin));
102 CHECK(q3.w() == Catch::Approx(4.0).margin(margin));
103
104
105 // Test subtraction of two quaternions
106 const vpQuaternionVector q4 = q3 - q1;
107 std::cout << "q4=" << q4 << std::endl;
108 CHECK(q4.x() == Catch::Approx(q2.x()).margin(margin));
109 CHECK(q4.y() == Catch::Approx(q2.y()).margin(margin));
110 CHECK(q4.z() == Catch::Approx(q2.z()).margin(margin));
111 CHECK(q4.w() == Catch::Approx(q2.w()).margin(margin));
112 }
113
114 SECTION("Multiplication")
115 {
117 const vpQuaternionVector q1(3.0, 4.0, 3.0, -sin(M_PI));
118 const vpQuaternionVector q2(3.9, -1.0, -3.0, 4.0);
119 const vpQuaternionVector q3 = q1 * q2;
120 const double margin = std::numeric_limits<double>::epsilon() * 1e4;
121 CHECK(q3.x() == Catch::Approx(3.0).margin(margin));
122 CHECK(q3.y() == Catch::Approx(36.7).margin(margin));
123 CHECK(q3.z() == Catch::Approx(-6.6).margin(margin));
124 CHECK(q3.w() == Catch::Approx(1.3).margin(margin));
125 }
126
127 SECTION("Conjugate")
128 {
129 const vpQuaternionVector q1(3.0, 36.7, -6.6, 1.3);
130 const vpQuaternionVector q1_conj = q1.conjugate();
131 const double margin = std::numeric_limits<double>::epsilon();
132 CHECK(q1_conj.x() == Catch::Approx(-q1.x()).margin(margin));
133 CHECK(q1_conj.y() == Catch::Approx(-q1.y()).margin(margin));
134 CHECK(q1_conj.z() == Catch::Approx(-q1.z()).margin(margin));
135 CHECK(q1_conj.w() == Catch::Approx(q1.w()).margin(margin));
136 }
137
138 SECTION("Inverse")
139 {
140 const vpQuaternionVector q1(3.0, 36.7, -6.6, 1.3);
141 const vpQuaternionVector q1_inv = q1.inverse();
142 const double margin = 1e-6;
143 CHECK(q1_inv.x() == Catch::Approx(-0.00214111).margin(margin));
144 CHECK(q1_inv.y() == Catch::Approx(-0.026193).margin(margin));
145 CHECK(q1_inv.z() == Catch::Approx(0.00471045).margin(margin));
146 CHECK(q1_inv.w() == Catch::Approx(0.000927816).margin(margin));
147 }
148
149 SECTION("Norm")
150 {
151 const vpQuaternionVector q1(3.0, 36.7, -6.6, 1.3);
152 const double norm = q1.magnitude();
153 CHECK(norm == Catch::Approx(37.4318).margin(1e-4));
154 }
155
156 SECTION("Normalization")
157 {
158 vpQuaternionVector q1(3.0, 36.7, -6.6, 1.3);
159 q1.normalize();
160 const double margin = 1e-6;
161 const double norm = q1.magnitude();
162 CHECK(norm == Catch::Approx(1.0).margin(1e-4));
163 CHECK(q1.x() == Catch::Approx(0.0801457).margin(margin));
164 CHECK(q1.y() == Catch::Approx(0.98045).margin(margin));
165 CHECK(q1.z() == Catch::Approx(-0.176321).margin(margin));
166 CHECK(q1.w() == Catch::Approx(0.0347298).margin(margin));
167 }
168
169 SECTION("Copy constructor")
170 {
171 vpQuaternionVector q_copy1 = vpQuaternionVector(0, 0, 1, 1);
172 std::cout << "q_copy1=" << q_copy1 << std::endl;
173 const vpQuaternionVector q_copy2 = q_copy1;
174 CHECK_FALSE((!vpMath::equal(q_copy2.x(), q_copy1.x()) || !vpMath::equal(q_copy2.y(), q_copy1.y()) ||
175 !vpMath::equal(q_copy2.z(), q_copy1.z()) || !vpMath::equal(q_copy2.w(), q_copy1.w())));
176
177 // compare data pointers: verify that they're not the same
178 CHECK(q_copy2.data != q_copy1.data);
179 q_copy1.set(1, 0, 1, 10);
180 CHECK((vpMath::equal(q_copy2.x(), q_copy1.x()) || vpMath::equal(q_copy2.y(), q_copy1.y()) ||
181 vpMath::equal(q_copy2.z(), q_copy1.z()) || vpMath::equal(q_copy2.w(), q_copy1.w())));
182 std::cout << "q_copy1 after set = " << q_copy1 << std::endl;
183 std::cout << "q_copy2=" << q_copy2 << std::endl;
184 }
185
186 SECTION("operator=")
187 {
188 const vpQuaternionVector q1 = vpQuaternionVector(0, 0, 1, 1);
189 vpQuaternionVector q_same(10, 10, 10, 10);
190 q_same = q1;
191
192 CHECK_FALSE((!vpMath::equal(q_same.x(), q1.x()) || !vpMath::equal(q_same.y(), q1.y()) ||
193 !vpMath::equal(q_same.z(), q1.z()) || !vpMath::equal(q_same.w(), q1.w())));
194 // compare data pointers: verify that they're not the same
195 CHECK(q_same.data != q1.data);
196 }
197
198}
199
200int main(int argc, char *argv[])
201{
202 Catch::Session session;
203 session.applyCommandLine(argc, argv);
204 int numFailed = session.run();
205 return numFailed;
206}
207#else
208#include <iostream>
209
210int main() { return EXIT_SUCCESS; }
211#endif
Type * data
Address of the first element of the data array.
Definition vpArray2D.h:149
Implementation of column vector and the associated operations.
vpColVector & normalize()
static double rad(double deg)
Definition vpMath.h:129
static bool equal(double x, double y, double threshold=0.001)
Definition vpMath.h:470
Implementation of a rotation vector as quaternion angle minimal representation.
const double & z() const
Returns the z-component of the quaternion.
vpQuaternionVector conjugate() const
vpQuaternionVector inverse() const
void set(double x, double y, double z, double w)
static vpQuaternionVector slerp(const vpQuaternionVector &q0, const vpQuaternionVector &q1, double t)
static vpQuaternionVector nlerp(const vpQuaternionVector &q0, const vpQuaternionVector &q1, double t)
const double & x() const
Returns the x-component of the quaternion.
const double & y() const
Returns the y-component of the quaternion.
const double & w() const
Returns the w-component of the quaternion.
static vpQuaternionVector lerp(const vpQuaternionVector &q0, const vpQuaternionVector &q1, double t)
Implementation of a rotation vector as axis-angle minimal representation.