blob: 4f63c31d16c0a3d3d665cd3fc15b85010d1379e2 [file] [log] [blame]
Mathias Agopian984826c2011-05-17 22:54:42 -07001/*
2 * Copyright (C) 2011 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <stdio.h>
18
19#include <utils/Log.h>
20
21#include "Fusion.h"
22
23namespace android {
24
25// -----------------------------------------------------------------------
26
Mathias Agopianeaf2d0b2011-06-13 16:00:49 -070027/*
28 * gyroVAR gives the measured variance of the gyro's output per
29 * Hz (or variance at 1 Hz). This is an "intrinsic" parameter of the gyro,
30 * which is independent of the sampling frequency.
31 *
32 * The variance of gyro's output at a given sampling period can be
33 * calculated as:
34 * variance(T) = gyroVAR / T
35 *
36 * The variance of the INTEGRATED OUTPUT at a given sampling period can be
37 * calculated as:
38 * variance_integrate_output(T) = gyroVAR * T
39 *
40 */
41static const float gyroVAR = 1e-7; // (rad/s)^2 / Hz
42static const float biasVAR = 1e-8; // (rad/s)^2 / s (guessed)
43
44/*
45 * Standard deviations of accelerometer and magnetometer
46 */
Mathias Agopian33015422011-05-27 18:18:13 -070047static const float accSTDEV = 0.05f; // m/s^2 (measured 0.08 / CDD 0.05)
48static const float magSTDEV = 0.5f; // uT (measured 0.7 / CDD 0.5)
Mathias Agopian984826c2011-05-17 22:54:42 -070049
Max Brauna01b4e22011-08-17 18:22:52 -070050static const float SYMMETRY_TOLERANCE = 1e-10f;
Mathias Agopian33015422011-05-27 18:18:13 -070051
Michael Johnson3e87d8d2011-08-19 11:47:08 -070052/*
Mathias Agopiana83f45c2011-08-24 18:40:33 -070053 * Accelerometer updates will not be performed near free fall to avoid
54 * ill-conditioning and div by zeros.
Michael Johnson3e87d8d2011-08-19 11:47:08 -070055 * Threshhold: 10% of g, in m/s^2
56 */
57static const float FREE_FALL_THRESHOLD = 0.981f;
Mathias Agopiana83f45c2011-08-24 18:40:33 -070058static const float FREE_FALL_THRESHOLD_SQ =
59 FREE_FALL_THRESHOLD*FREE_FALL_THRESHOLD;
Michael Johnson3e87d8d2011-08-19 11:47:08 -070060
61/*
62 * The geomagnetic-field should be between 30uT and 60uT.
Mathias Agopiana83f45c2011-08-24 18:40:33 -070063 * Fields strengths greater than this likely indicate a local magnetic
64 * disturbance which we do not want to update into the fused frame.
Michael Johnson3e87d8d2011-08-19 11:47:08 -070065 */
66static const float MAX_VALID_MAGNETIC_FIELD = 100; // uT
Mathias Agopiana83f45c2011-08-24 18:40:33 -070067static const float MAX_VALID_MAGNETIC_FIELD_SQ =
68 MAX_VALID_MAGNETIC_FIELD*MAX_VALID_MAGNETIC_FIELD;
Michael Johnson3e87d8d2011-08-19 11:47:08 -070069
70/*
Mathias Agopiana83f45c2011-08-24 18:40:33 -070071 * Values of the field smaller than this should be ignored in fusion to avoid
72 * ill-conditioning. This state can happen with anomalous local magnetic
73 * disturbances canceling the Earth field.
Michael Johnson3e87d8d2011-08-19 11:47:08 -070074 */
75static const float MIN_VALID_MAGNETIC_FIELD = 10; // uT
Mathias Agopiana83f45c2011-08-24 18:40:33 -070076static const float MIN_VALID_MAGNETIC_FIELD_SQ =
77 MIN_VALID_MAGNETIC_FIELD*MIN_VALID_MAGNETIC_FIELD;
Michael Johnson3e87d8d2011-08-19 11:47:08 -070078
79/*
Mathias Agopiana83f45c2011-08-24 18:40:33 -070080 * If the cross product of two vectors has magnitude squared less than this,
81 * we reject it as invalid due to alignment of the vectors.
82 * This threshold is used to check for the case where the magnetic field sample
83 * is parallel to the gravity field, which can happen in certain places due
84 * to magnetic field disturbances.
Michael Johnson3e87d8d2011-08-19 11:47:08 -070085 */
86static const float MIN_VALID_CROSS_PRODUCT_MAG = 1.0e-3;
87static const float MIN_VALID_CROSS_PRODUCT_MAG_SQ =
88 MIN_VALID_CROSS_PRODUCT_MAG*MIN_VALID_CROSS_PRODUCT_MAG;
89
Mathias Agopian33015422011-05-27 18:18:13 -070090// -----------------------------------------------------------------------
Mathias Agopian984826c2011-05-17 22:54:42 -070091
92template <typename TYPE, size_t C, size_t R>
93static mat<TYPE, R, R> scaleCovariance(
94 const mat<TYPE, C, R>& A,
95 const mat<TYPE, C, C>& P) {
96 // A*P*transpose(A);
97 mat<TYPE, R, R> APAt;
98 for (size_t r=0 ; r<R ; r++) {
99 for (size_t j=r ; j<R ; j++) {
100 double apat(0);
101 for (size_t c=0 ; c<C ; c++) {
102 double v(A[c][r]*P[c][c]*0.5);
103 for (size_t k=c+1 ; k<C ; k++)
104 v += A[k][r] * P[c][k];
105 apat += 2 * v * A[c][j];
106 }
107 APAt[j][r] = apat;
108 APAt[r][j] = apat;
109 }
110 }
111 return APAt;
112}
113
114template <typename TYPE, typename OTHER_TYPE>
115static mat<TYPE, 3, 3> crossMatrix(const vec<TYPE, 3>& p, OTHER_TYPE diag) {
116 mat<TYPE, 3, 3> r;
117 r[0][0] = diag;
118 r[1][1] = diag;
119 r[2][2] = diag;
120 r[0][1] = p.z;
121 r[1][0] =-p.z;
122 r[0][2] =-p.y;
123 r[2][0] = p.y;
124 r[1][2] = p.x;
125 r[2][1] =-p.x;
126 return r;
127}
128
Mathias Agopian984826c2011-05-17 22:54:42 -0700129
130template<typename TYPE, size_t SIZE>
131class Covariance {
132 mat<TYPE, SIZE, SIZE> mSumXX;
133 vec<TYPE, SIZE> mSumX;
134 size_t mN;
135public:
136 Covariance() : mSumXX(0.0f), mSumX(0.0f), mN(0) { }
137 void update(const vec<TYPE, SIZE>& x) {
138 mSumXX += x*transpose(x);
139 mSumX += x;
140 mN++;
141 }
142 mat<TYPE, SIZE, SIZE> operator()() const {
143 const float N = 1.0f / mN;
144 return mSumXX*N - (mSumX*transpose(mSumX))*(N*N);
145 }
146 void reset() {
147 mN = 0;
148 mSumXX = 0;
149 mSumX = 0;
150 }
151 size_t getCount() const {
152 return mN;
153 }
154};
155
156// -----------------------------------------------------------------------
157
158Fusion::Fusion() {
Mathias Agopian33015422011-05-27 18:18:13 -0700159 Phi[0][1] = 0;
160 Phi[1][1] = 1;
Mathias Agopian984826c2011-05-17 22:54:42 -0700161
162 Ba.x = 0;
163 Ba.y = 0;
164 Ba.z = 1;
165
166 Bm.x = 0;
167 Bm.y = 1;
168 Bm.z = 0;
169
Mathias Agopian667102f2011-09-14 16:43:34 -0700170 x0 = 0;
171 x1 = 0;
172
Mathias Agopian984826c2011-05-17 22:54:42 -0700173 init();
174}
175
176void Fusion::init() {
Mathias Agopian984826c2011-05-17 22:54:42 -0700177 mInitState = 0;
Max Brauna01b4e22011-08-17 18:22:52 -0700178
Mathias Agopian33015422011-05-27 18:18:13 -0700179 mGyroRate = 0;
Max Brauna01b4e22011-08-17 18:22:52 -0700180
Mathias Agopian984826c2011-05-17 22:54:42 -0700181 mCount[0] = 0;
182 mCount[1] = 0;
183 mCount[2] = 0;
Max Brauna01b4e22011-08-17 18:22:52 -0700184
Mathias Agopian984826c2011-05-17 22:54:42 -0700185 mData = 0;
186}
187
Mathias Agopian33015422011-05-27 18:18:13 -0700188void Fusion::initFusion(const vec4_t& q, float dT)
189{
190 // initial estimate: E{ x(t0) }
191 x0 = q;
192 x1 = 0;
193
Mathias Agopianeaf2d0b2011-06-13 16:00:49 -0700194 // process noise covariance matrix: G.Q.Gt, with
195 //
196 // G = | -1 0 | Q = | q00 q10 |
197 // | 0 1 | | q01 q11 |
198 //
199 // q00 = sv^2.dt + 1/3.su^2.dt^3
200 // q10 = q01 = 1/2.su^2.dt^2
201 // q11 = su^2.dt
202 //
Mathias Agopian33015422011-05-27 18:18:13 -0700203
Mathias Agopiandc5b63e2012-06-18 18:49:08 -0700204 const float dT2 = dT*dT;
205 const float dT3 = dT2*dT;
206
207 // variance of integrated output at 1/dT Hz (random drift)
208 const float q00 = gyroVAR * dT + 0.33333f * biasVAR * dT3;
Mathias Agopianeaf2d0b2011-06-13 16:00:49 -0700209
210 // variance of drift rate ramp
211 const float q11 = biasVAR * dT;
Mathias Agopiandc5b63e2012-06-18 18:49:08 -0700212 const float q10 = 0.5f * biasVAR * dT2;
Mathias Agopian33015422011-05-27 18:18:13 -0700213 const float q01 = q10;
Mathias Agopianeaf2d0b2011-06-13 16:00:49 -0700214
215 GQGt[0][0] = q00; // rad^2
Mathias Agopian33015422011-05-27 18:18:13 -0700216 GQGt[1][0] = -q10;
217 GQGt[0][1] = -q01;
Mathias Agopianeaf2d0b2011-06-13 16:00:49 -0700218 GQGt[1][1] = q11; // (rad/s)^2
Mathias Agopian33015422011-05-27 18:18:13 -0700219
220 // initial covariance: Var{ x(t0) }
Mathias Agopianeaf2d0b2011-06-13 16:00:49 -0700221 // TODO: initialize P correctly
Mathias Agopian33015422011-05-27 18:18:13 -0700222 P = 0;
223}
224
Mathias Agopian984826c2011-05-17 22:54:42 -0700225bool Fusion::hasEstimate() const {
226 return (mInitState == (MAG|ACC|GYRO));
227}
228
Mathias Agopian33015422011-05-27 18:18:13 -0700229bool Fusion::checkInitComplete(int what, const vec3_t& d, float dT) {
230 if (hasEstimate())
Mathias Agopian984826c2011-05-17 22:54:42 -0700231 return true;
232
233 if (what == ACC) {
234 mData[0] += d * (1/length(d));
235 mCount[0]++;
236 mInitState |= ACC;
237 } else if (what == MAG) {
238 mData[1] += d * (1/length(d));
239 mCount[1]++;
240 mInitState |= MAG;
241 } else if (what == GYRO) {
Mathias Agopian33015422011-05-27 18:18:13 -0700242 mGyroRate = dT;
243 mData[2] += d*dT;
Mathias Agopian984826c2011-05-17 22:54:42 -0700244 mCount[2]++;
245 if (mCount[2] == 64) {
246 // 64 samples is good enough to estimate the gyro drift and
247 // doesn't take too much time.
248 mInitState |= GYRO;
249 }
250 }
251
252 if (mInitState == (MAG|ACC|GYRO)) {
253 // Average all the values we collected so far
254 mData[0] *= 1.0f/mCount[0];
255 mData[1] *= 1.0f/mCount[1];
256 mData[2] *= 1.0f/mCount[2];
257
258 // calculate the MRPs from the data collection, this gives us
259 // a rough estimate of our initial state
260 mat33_t R;
261 vec3_t up(mData[0]);
262 vec3_t east(cross_product(mData[1], up));
263 east *= 1/length(east);
264 vec3_t north(cross_product(up, east));
265 R << east << north << up;
Mathias Agopian33015422011-05-27 18:18:13 -0700266 const vec4_t q = matrixToQuat(R);
Mathias Agopian984826c2011-05-17 22:54:42 -0700267
Mathias Agopian33015422011-05-27 18:18:13 -0700268 initFusion(q, mGyroRate);
Mathias Agopian984826c2011-05-17 22:54:42 -0700269 }
270
271 return false;
272}
273
274void Fusion::handleGyro(const vec3_t& w, float dT) {
Mathias Agopian33015422011-05-27 18:18:13 -0700275 if (!checkInitComplete(GYRO, w, dT))
Mathias Agopian984826c2011-05-17 22:54:42 -0700276 return;
277
Mathias Agopian33015422011-05-27 18:18:13 -0700278 predict(w, dT);
Mathias Agopian984826c2011-05-17 22:54:42 -0700279}
280
281status_t Fusion::handleAcc(const vec3_t& a) {
Mathias Agopian33015422011-05-27 18:18:13 -0700282 // ignore acceleration data if we're close to free-fall
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700283 if (length_squared(a) < FREE_FALL_THRESHOLD_SQ) {
Mathias Agopian984826c2011-05-17 22:54:42 -0700284 return BAD_VALUE;
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700285 }
Mathias Agopian984826c2011-05-17 22:54:42 -0700286
287 if (!checkInitComplete(ACC, a))
288 return BAD_VALUE;
289
Mathias Agopian984826c2011-05-17 22:54:42 -0700290 const float l = 1/length(a);
291 update(a*l, Ba, accSTDEV*l);
292 return NO_ERROR;
293}
294
295status_t Fusion::handleMag(const vec3_t& m) {
296 // the geomagnetic-field should be between 30uT and 60uT
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700297 // reject if too large to avoid spurious magnetic sources
298 const float magFieldSq = length_squared(m);
299 if (magFieldSq > MAX_VALID_MAGNETIC_FIELD_SQ) {
Mathias Agopian984826c2011-05-17 22:54:42 -0700300 return BAD_VALUE;
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700301 } else if (magFieldSq < MIN_VALID_MAGNETIC_FIELD_SQ) {
Mathias Agopiana83f45c2011-08-24 18:40:33 -0700302 // Also reject if too small since we will get ill-defined (zero mag)
303 // cross-products below
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700304 return BAD_VALUE;
305 }
Mathias Agopian984826c2011-05-17 22:54:42 -0700306
307 if (!checkInitComplete(MAG, m))
308 return BAD_VALUE;
309
Mathias Agopiana83f45c2011-08-24 18:40:33 -0700310 // Orthogonalize the magnetic field to the gravity field, mapping it into
311 // tangent to Earth.
Mathias Agopian984826c2011-05-17 22:54:42 -0700312 const vec3_t up( getRotationMatrix() * Ba );
313 const vec3_t east( cross_product(m, up) );
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700314
Mathias Agopiana83f45c2011-08-24 18:40:33 -0700315 // If the m and up vectors align, the cross product magnitude will
316 // approach 0.
317 // Reject this case as well to avoid div by zero problems and
318 // ill-conditioning below.
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700319 if (length_squared(east) < MIN_VALID_CROSS_PRODUCT_MAG_SQ) {
Michael Johnson3e87d8d2011-08-19 11:47:08 -0700320 return BAD_VALUE;
321 }
322
Mathias Agopiana83f45c2011-08-24 18:40:33 -0700323 // If we have created an orthogonal magnetic field successfully,
324 // then pass it in as the update.
Mathias Agopian984826c2011-05-17 22:54:42 -0700325 vec3_t north( cross_product(up, east) );
326
327 const float l = 1 / length(north);
328 north *= l;
329
Mathias Agopian984826c2011-05-17 22:54:42 -0700330 update(north, Bm, magSTDEV*l);
331 return NO_ERROR;
332}
333
Max Brauna01b4e22011-08-17 18:22:52 -0700334void Fusion::checkState() {
335 // P needs to stay positive semidefinite or the fusion diverges. When we
336 // detect divergence, we reset the fusion.
337 // TODO(braun): Instead, find the reason for the divergence and fix it.
338
339 if (!isPositiveSemidefinite(P[0][0], SYMMETRY_TOLERANCE) ||
340 !isPositiveSemidefinite(P[1][1], SYMMETRY_TOLERANCE)) {
Steve Block3c20fbe2012-01-05 23:22:43 +0000341 ALOGW("Sensor fusion diverged; resetting state.");
Mathias Agopian984826c2011-05-17 22:54:42 -0700342 P = 0;
Mathias Agopian984826c2011-05-17 22:54:42 -0700343 }
Mathias Agopian984826c2011-05-17 22:54:42 -0700344}
345
Mathias Agopian33015422011-05-27 18:18:13 -0700346vec4_t Fusion::getAttitude() const {
347 return x0;
Mathias Agopian984826c2011-05-17 22:54:42 -0700348}
349
350vec3_t Fusion::getBias() const {
Mathias Agopian33015422011-05-27 18:18:13 -0700351 return x1;
Mathias Agopian984826c2011-05-17 22:54:42 -0700352}
353
354mat33_t Fusion::getRotationMatrix() const {
Mathias Agopian33015422011-05-27 18:18:13 -0700355 return quatToMatrix(x0);
Mathias Agopian984826c2011-05-17 22:54:42 -0700356}
357
Mathias Agopian33015422011-05-27 18:18:13 -0700358mat34_t Fusion::getF(const vec4_t& q) {
359 mat34_t F;
Mathias Agopiandc5b63e2012-06-18 18:49:08 -0700360
361 // This is used to compute the derivative of q
362 // F = | [q.xyz]x |
363 // | -q.xyz |
364
Mathias Agopian33015422011-05-27 18:18:13 -0700365 F[0].x = q.w; F[1].x =-q.z; F[2].x = q.y;
366 F[0].y = q.z; F[1].y = q.w; F[2].y =-q.x;
367 F[0].z =-q.y; F[1].z = q.x; F[2].z = q.w;
368 F[0].w =-q.x; F[1].w =-q.y; F[2].w =-q.z;
Mathias Agopian984826c2011-05-17 22:54:42 -0700369 return F;
370}
371
Mathias Agopian33015422011-05-27 18:18:13 -0700372void Fusion::predict(const vec3_t& w, float dT) {
373 const vec4_t q = x0;
374 const vec3_t b = x1;
375 const vec3_t we = w - b;
Mathias Agopian984826c2011-05-17 22:54:42 -0700376
Mathias Agopianbdf27732012-06-28 18:21:43 -0700377 // q(k+1) = O(we)*q(k)
378 // --------------------
379 //
380 // O(w) = | cos(0.5*||w||*dT)*I33 - [psi]x psi |
381 // | -psi' cos(0.5*||w||*dT) |
382 //
383 // psi = sin(0.5*||w||*dT)*w / ||w||
384 //
385 //
Mathias Agopian8f11b242012-06-27 18:51:43 -0700386 // P(k+1) = Phi(k)*P(k)*Phi(k)' + G*Q(k)*G'
Mathias Agopianbdf27732012-06-28 18:21:43 -0700387 // ----------------------------------------
Mathias Agopian8f11b242012-06-27 18:51:43 -0700388 //
389 // G = | -I33 0 |
390 // | 0 I33 |
391 //
Mathias Agopian33015422011-05-27 18:18:13 -0700392 // Phi = | Phi00 Phi10 |
393 // | 0 1 |
Mathias Agopian8f11b242012-06-27 18:51:43 -0700394 //
395 // Phi00 = I33
396 // - [w]x * sin(||w||*dt)/||w||
397 // + [w]x^2 * (1-cos(||w||*dT))/||w||^2
398 //
399 // Phi10 = [w]x * (1 - cos(||w||*dt))/||w||^2
400 // - [w]x^2 * (||w||*dT - sin(||w||*dt))/||w||^3
401 // - I33*dT
402
Mathias Agopian33015422011-05-27 18:18:13 -0700403 const mat33_t I33(1);
404 const mat33_t I33dT(dT);
405 const mat33_t wx(crossMatrix(we, 0));
406 const mat33_t wx2(wx*wx);
407 const float lwedT = length(we)*dT;
Mathias Agopianbdf27732012-06-28 18:21:43 -0700408 const float hlwedT = 0.5f*lwedT;
Mathias Agopian33015422011-05-27 18:18:13 -0700409 const float ilwe = 1/length(we);
410 const float k0 = (1-cosf(lwedT))*(ilwe*ilwe);
411 const float k1 = sinf(lwedT);
Mathias Agopianbdf27732012-06-28 18:21:43 -0700412 const float k2 = cosf(hlwedT);
413 const vec3_t psi(sinf(hlwedT)*ilwe*we);
414 const mat33_t O33(crossMatrix(-psi, k2));
415 mat44_t O;
416 O[0].xyz = O33[0]; O[0].w = -psi.x;
417 O[1].xyz = O33[1]; O[1].w = -psi.y;
418 O[2].xyz = O33[2]; O[2].w = -psi.z;
419 O[3].xyz = psi; O[3].w = k2;
Mathias Agopian984826c2011-05-17 22:54:42 -0700420
Mathias Agopian33015422011-05-27 18:18:13 -0700421 Phi[0][0] = I33 - wx*(k1*ilwe) + wx2*k0;
422 Phi[1][0] = wx*k0 - I33dT - wx2*(ilwe*ilwe*ilwe)*(lwedT-k1);
Mathias Agopian984826c2011-05-17 22:54:42 -0700423
Mathias Agopianbdf27732012-06-28 18:21:43 -0700424 x0 = O*q;
425 if (x0.w < 0)
426 x0 = -x0;
427
Mathias Agopian33015422011-05-27 18:18:13 -0700428 P = Phi*P*transpose(Phi) + GQGt;
Max Brauna01b4e22011-08-17 18:22:52 -0700429
430 checkState();
Mathias Agopian984826c2011-05-17 22:54:42 -0700431}
432
433void Fusion::update(const vec3_t& z, const vec3_t& Bi, float sigma) {
Mathias Agopian33015422011-05-27 18:18:13 -0700434 vec4_t q(x0);
Mathias Agopian984826c2011-05-17 22:54:42 -0700435 // measured vector in body space: h(p) = A(p)*Bi
Mathias Agopian33015422011-05-27 18:18:13 -0700436 const mat33_t A(quatToMatrix(q));
Mathias Agopian984826c2011-05-17 22:54:42 -0700437 const vec3_t Bb(A*Bi);
438
439 // Sensitivity matrix H = dh(p)/dp
440 // H = [ L 0 ]
Mathias Agopian33015422011-05-27 18:18:13 -0700441 const mat33_t L(crossMatrix(Bb, 0));
Mathias Agopian984826c2011-05-17 22:54:42 -0700442
Mathias Agopian33015422011-05-27 18:18:13 -0700443 // gain...
444 // K = P*Ht / [H*P*Ht + R]
445 vec<mat33_t, 2> K;
Mathias Agopian984826c2011-05-17 22:54:42 -0700446 const mat33_t R(sigma*sigma);
447 const mat33_t S(scaleCovariance(L, P[0][0]) + R);
448 const mat33_t Si(invert(S));
449 const mat33_t LtSi(transpose(L)*Si);
Mathias Agopian984826c2011-05-17 22:54:42 -0700450 K[0] = P[0][0] * LtSi;
451 K[1] = transpose(P[1][0])*LtSi;
452
Mathias Agopian33015422011-05-27 18:18:13 -0700453 // update...
Mathias Agopiandc5b63e2012-06-18 18:49:08 -0700454 // P = (I-K*H) * P
455 // P -= K*H*P
456 // | K0 | * | L 0 | * P = | K0*L 0 | * | P00 P10 | = | K0*L*P00 K0*L*P10 |
457 // | K1 | | K1*L 0 | | P01 P11 | | K1*L*P00 K1*L*P10 |
458 // Note: the Joseph form is numerically more stable and given by:
459 // P = (I-KH) * P * (I-KH)' + K*R*R'
Mathias Agopian984826c2011-05-17 22:54:42 -0700460 const mat33_t K0L(K[0] * L);
461 const mat33_t K1L(K[1] * L);
462 P[0][0] -= K0L*P[0][0];
463 P[1][1] -= K1L*P[1][0];
464 P[1][0] -= K0L*P[1][0];
Mathias Agopian33015422011-05-27 18:18:13 -0700465 P[0][1] = transpose(P[1][0]);
466
467 const vec3_t e(z - Bb);
468 const vec3_t dq(K[0]*e);
469 const vec3_t db(K[1]*e);
470
471 q += getF(q)*(0.5f*dq);
472 x0 = normalize_quat(q);
473 x1 += db;
Max Brauna01b4e22011-08-17 18:22:52 -0700474
475 checkState();
Mathias Agopian984826c2011-05-17 22:54:42 -0700476}
477
478// -----------------------------------------------------------------------
479
480}; // namespace android
481