Visual Servoing Platform version 3.7.0
Loading...
Searching...
No Matches
vpUKSigmaDrawerMerwe.cpp
1/*
2 * ViSP, open source Visual Servoing Platform software.
3 * Copyright (C) 2005 - 2025 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 * Kalman filtering.
32 */
33
38
39#include <visp3/core/vpUKSigmaDrawerMerwe.h>
40
41#if (VISP_CXX_STANDARD >= VISP_CXX_STANDARD_11)
43vpUKSigmaDrawerMerwe::vpUKSigmaDrawerMerwe(const unsigned int &n, const double &alpha, const double &beta, const double &kappa,
44 const vpAddSubFunction &resFunc, const vpAddSubFunction &addFunc)
46 , m_alpha(alpha)
47 , m_beta(beta)
48 , m_kappa(kappa)
49 , m_resFunc(resFunc)
50 , m_addFunc(addFunc)
51{
53}
54
55std::vector<vpColVector> vpUKSigmaDrawerMerwe::drawSigmaPoints(const vpColVector &mean, const vpMatrix &covariance)
56{
57 const unsigned int nbSigmaPoints = 2 * m_n + 1;
58 std::vector<vpColVector> sigmaPoints(nbSigmaPoints);
59 sigmaPoints[0] = mean;
60 vpMatrix scaledCov = (static_cast<double>(m_n) + m_lambda) * covariance;
61 vpMatrix cholesky = scaledCov.cholesky();
62 for (unsigned int i = 0; i < m_n; ++i) {
63 sigmaPoints[i + 1] = m_addFunc(mean, cholesky.getRow(i).transpose());
64 sigmaPoints[i + m_n + 1] = m_resFunc(mean, cholesky.getRow(i).transpose());
65 }
66 return sigmaPoints;
67}
68
70{
71 const unsigned int nbSigmaPoints = 2 * m_n + 1;
73 weights.m_wm.resize(nbSigmaPoints);
74 weights.m_wc.resize(nbSigmaPoints);
75
76 weights.m_wm[0] = m_lambda / (static_cast<double>(m_n) + m_lambda);
77 weights.m_wc[0] = (m_lambda / (static_cast<double>(m_n) + m_lambda)) + 1.0 - m_alpha * m_alpha + m_beta;
78
79 double cstWeight = 1. / (2. * (static_cast<double>(m_n) + m_lambda));
80 for (unsigned int i = 1; i < nbSigmaPoints; ++i) {
81 weights.m_wm[i] = cstWeight;
82 weights.m_wc[i] = cstWeight;
83 }
84 return weights;
85}
86END_VISP_NAMESPACE
87#else
88void vpUKSigmaDrawerMerwe_dummy()
89{
90
91}
92#endif
Implementation of column vector and the associated operations.
Implementation of a matrix and operations on matrices.
Definition vpMatrix.h:175
vpMatrix cholesky() const
vpRowVector getRow(unsigned int i) const
Definition vpMatrix.cpp:602
vpColVector transpose() const
vpUKSigmaDrawerAbstract(const unsigned int &n)
vpUKSigmaDrawerMerwe(const unsigned int &n, const double &alpha, const double &beta, const double &kappa, const vpAddSubFunction &resFunc=vpUnscentedKalman::simpleResidual, const vpAddSubFunction &addFunc=vpUnscentedKalman::simpleAdd)
Construct a new vpUKSigmaDrawerMerwe object.
virtual vpSigmaPointsWeights computeWeights() VP_OVERRIDE
Computed the weights that correspond to the sigma points that have been drawn.
vpUnscentedKalman::vpAddSubFunction vpAddSubFunction
virtual std::vector< vpColVector > drawSigmaPoints(const vpColVector &mean, const vpMatrix &covariance) VP_OVERRIDE
Draw the sigma points according to the current mean and covariance of the state of the Unscented Kalm...
The weights corresponding to the sigma points drawing.