【李群李代数】【manif 】基于固定信标的2D机器人定位 (Error State Kalman Filter)...

本文主要是介绍【李群李代数】【manif 】基于固定信标的2D机器人定位 (Error State Kalman Filter)...,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

demo演示

8c30742758c21c75a11b6a3f8fe42301.png

运行结果

我们考虑一个机器人在平面上被少量的准时地标或_信标 包围。

机器人以轴向速度和角速度的形式接收控制动作,并且能够测量信标相对于其自身参考系的位置。

机器人位姿 X 在 SE(2) 中,信标位置 b_k 在 R^2 中,

        | cos th  -sin th  x |

*      X = | sin th   cos th   y | //位置和方向

                    |  0     0   1 |

*     b_k = (bx_k, by_k)           // 世界坐标系中的lmk坐标 

控制信号 u se(2) 中的旋量,包括纵向速度 v 和角速度 w,没有横向速度分量,在采样时间 dt 上积分。

*      u = (v*dt, 0, w*dt)

控制被带有协方差的加性高斯噪声 u_noise 破坏

*    Q = diagonal(sigma_v^2, sigma_s^2, sigma_w^2).

此噪声解释了通过 sigma_s 非零值可能出现的横向滑移 u_s

*当控制 u 到达时,机器人位姿更新为 X <-- X * Exp(u) = X + u

地标测量是范围和方位类型,但为了简单起见,它们采用笛卡尔形式。

它们的噪声 n 是零均值高斯分布,并用协方差矩阵 R 指定。

我们注意到刚性运动动作 y = h(X,b) = X^-1 * b

*     y_k = (brx_k, bry_k)       // 机器人坐标系中的lmk坐标

 我们考虑位于已知位置的信标 b_k

我们将要估计的位姿定义为 SE(2) 中的 X

估计误差 dx 及其协方差 P X 处的切线空间中表示。

*所有这些变量再次总结如下

* * X : 机器人位姿,SE(2)

* u :机器人控制量,(v*dt ; 0 ; w*dt) in se(2)

* Q : 控制扰动协方差

* b_k : k 个地标位置,R^2

* y :机器人坐标系中的笛卡尔地标测量,R^2

* R : 测量噪声的协方差

*  The motion and measurement models are运动和测量模型是

*   X_(t+1) = f(X_t, u) = X_t * Exp ( w )    //运动方程 

*   y_k     = h(X, b_k) = X^-1 * b_k          //测量方程

下面的算法首先包括一个模拟器来产生测量结果,然后使用这些测量结果来估计状态,使用基于李的误差状态卡尔曼滤波器。最后,打印模拟状态和估计状态以及未过滤状态(即没有卡尔曼校正)可以评估估计的质量。

#include "manif/SE2.h"#include <vector>#include <iostream>
#include <iomanip>using std::cout;
using std::endl;using namespace Eigen;typedef Array<double, 2, 1> Array2d;
typedef Array<double, 3, 1> Array3d;int main()
{std::srand((unsigned int) time(0));// START CONFIGURATION////const int NUMBER_OF_LMKS_TO_MEASURE = 3;// Define the robot pose element and its covariancemanif::SE2d X, X_simulation, X_unfiltered;Matrix3d    P;X_simulation.setIdentity();X.setIdentity();X_unfiltered.setIdentity();P.setZero();// Define a control vector and its noise and covariancemanif::SE2Tangentd  u_simu, u_est, u_unfilt;Vector3d            u_nom, u_noisy, u_noise;Array3d             u_sigmas;Matrix3d            U;u_nom    << 0.1, 0.0, 0.05;u_sigmas << 0.1, 0.1, 0.1;U        = (u_sigmas * u_sigmas).matrix().asDiagonal();// Declare the Jacobians of the motion wrt robot and controlmanif::SE2d::Jacobian J_x, J_u;// Define three landmarks in R^2Eigen::Vector2d b0, b1, b2, b;b0 << 2.0,  0.0;b1 << 2.0,  1.0;b2 << 2.0, -1.0;std::vector<Eigen::Vector2d> landmarks;landmarks.push_back(b0);landmarks.push_back(b1);landmarks.push_back(b2);// Define the beacon's measurementsVector2d                y, y_noise;Array2d                 y_sigmas;Matrix2d                R;std::vector<Vector2d>   measurements(landmarks.size());y_sigmas << 0.01, 0.01;R        = (y_sigmas * y_sigmas).matrix().asDiagonal();// Declare the Jacobian of the measurements wrt the robot poseMatrix<double, 2, 3>    H;      // H = J_e_x// Declare some temporariesVector2d                e, z;   // expectation, innovationMatrix2d                E, Z;   // covariances of the aboveMatrix<double, 3, 2>    K;      // Kalman gainmanif::SE2Tangentd      dx;     // optimal update step, or error-statemanif::SE2d::Jacobian   J_xi_x; // Jacobian is typedef MatrixMatrix<double, 2, 3>    J_e_xi; // Jacobian////// CONFIGURATION DONE// DEBUGcout << std::fixed   << std::setprecision(3) << std::showpos << endl;cout << "X STATE     :    X      Y    THETA" << endl;cout << "----------------------------------" << endl;cout << "X initial   : " << X_simulation.log().coeffs().transpose() << endl;cout << "----------------------------------" << endl;// END DEBUG// START TEMPORAL LOOP////// Make 10 steps. Measure up to three landmarks each time.for (int t = 0; t < 10; t++){I. Simulation ###############################################################################/// simulate noiseu_noise = u_sigmas * Array3d::Random();             // control noiseu_noisy = u_nom + u_noise;                          // noisy controlu_simu   = u_nom;u_est    = u_noisy;u_unfilt = u_noisy;/// first we move - - - - - - - - - - - - - - - - - - - - - - - - - - - -X_simulation = X_simulation + u_simu;               // overloaded X.rplus(u) = X * exp(u)/// then we measure all landmarks - - - - - - - - - - - - - - - - - - - -for (std::size_t i = 0; i < landmarks.size(); i++){b = landmarks[i];                               // lmk coordinates in world frame/// simulate noisey_noise = y_sigmas * Array2d::Random();         // measurement noisey = X_simulation.inverse().act(b);              // landmark measurement, before adding noisey = y + y_noise;                                // landmark measurement, noisymeasurements[i] = y;                            // store for the estimator just below}II. Estimation ###############################################################################/// First we move - - - - - - - - - - - - - - - - - - - - - - - - - - - -X = X.plus(u_est, J_x, J_u);                        // X * exp(u), with JacobiansP = J_x * P * J_x.transpose() + J_u * U * J_u.transpose();/// Then we correct using the measurements of each lmk - - - - - - - - -for (int i = 0; i < NUMBER_OF_LMKS_TO_MEASURE; i++){// landmarkb = landmarks[i];                               // lmk coordinates in world frame// measurementy = measurements[i];                            // lmk measurement, noisy// expectatione = X.inverse(J_xi_x).act(b, J_e_xi);           // note: e = R.tr * ( b - t ), for X = (R,t).H = J_e_xi * J_xi_x;                            // note: H = J_e_x = J_e_xi * J_xi_xE = H * P * H.transpose();// innovationz = y - e;Z = E + R;// Kalman gainK = P * H.transpose() * Z.inverse();            // K = P * H.tr * ( H * P * H.tr + R).inv// Correction stepdx = K * z;                                     // dx is in the tangent space at X// UpdateX = X + dx;                                     // overloaded X.rplus(dx) = X * exp(dx)P = P - K * Z * K.transpose();}III. Unfiltered ##############################################################################// move also an unfiltered version for comparison purposesX_unfiltered = X_unfiltered + u_unfilt;IV. Results ##############################################################################// DEBUGcout << "X simulated : " << X_simulation.log().coeffs().transpose() << endl;cout << "X estimated : " << X.log().coeffs().transpose() << endl;cout << "X unfilterd : " << X_unfiltered.log().coeffs().transpose() << endl;cout << "----------------------------------" << endl;// END DEBUG}////// END OF TEMPORAL LOOP. DONE.return 0;
}

0392760afa798dd52247e71a8424af24.png

The End

这篇关于【李群李代数】【manif 】基于固定信标的2D机器人定位 (Error State Kalman Filter)...的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/344241

相关文章

无人叉车3d激光slam多房间建图定位异常处理方案-墙体画线地图切分方案

墙体画线地图切分方案 针对问题:墙体两侧特征混淆误匹配,导致建图和定位偏差,表现为过门跳变、外月台走歪等 ·解决思路:预期的根治方案IGICP需要较长时间完成上线,先使用切分地图的工程化方案,即墙体两侧切分为不同地图,在某一侧只使用该侧地图进行定位 方案思路 切分原理:切分地图基于关键帧位置,而非点云。 理论基础:光照是直线的,一帧点云必定只能照射到墙的一侧,无法同时照到两侧实践考虑:关

状态模式state

学习笔记,原文链接 https://refactoringguru.cn/design-patterns/state 在一个对象的内部状态变化时改变其行为, 使其看上去就像改变了自身所属的类一样。 在状态模式中,player.getState()获取的是player的当前状态,通常是一个实现了状态接口的对象。 onPlay()是状态模式中定义的一个方法,不同状态下(例如“正在播放”、“暂停

基于树梅派的视频监控机器人Verybot

最近这段时间做了一个基于树梅派 ( raspberry pi ) 的视频监控机器人平台 Verybot ,现在打算把这个机器人的一些图片、视频、设计思路进行公开,并且希望跟大家一起研究相关的各种问题,下面是两张机器人的照片:         图片1:                   图片2                    这个平台的基本组成是:

js定位navigator.geolocation

一、简介   html5为window.navigator提供了geolocation属性,用于获取基于浏览器的当前用户地理位置。   window.navigator.geolocation提供了3个方法分别是: void getCurrentPosition(onSuccess,onError,options);//获取用户当前位置int watchCurrentPosition(

【高等代数笔记】线性空间(一到四)

3. 线性空间 令 K n : = { ( a 1 , a 2 , . . . , a n ) ∣ a i ∈ K , i = 1 , 2 , . . . , n } \textbf{K}^{n}:=\{(a_{1},a_{2},...,a_{n})|a_{i}\in\textbf{K},i=1,2,...,n\} Kn:={(a1​,a2​,...,an​)∣ai​∈K,i=1,2,...,n

flume系列之:记录一次flume agent进程被异常oom kill -9的原因定位

flume系列之:记录一次flume agent进程被异常oom kill -9的原因定位 一、背景二、定位问题三、解决方法 一、背景 flume系列之:定位flume没有关闭某个时间点生成的tmp文件的原因,并制定解决方案在博主上面这篇文章的基础上,在机器内存、cpu资源、flume agent资源都足够的情况下,flume agent又出现了tmp文件无法关闭的情况 二、

编译linux内核出现 arm-eabi-gcc: error: : No such file or directory

external/e2fsprogs/lib/ext2fs/tdb.c:673:29: warning: comparison between : In function 'max2165_set_params': -。。。。。。。。。。。。。。。。。。 。。。。。。。。。。。。。 。。。。。。。。 host asm: libdvm <= dalvik/vm/mterp/out/Inte

Matter.js:Web开发者的2D物理引擎

Matter.js:Web开发者的2D物理引擎 前言 在现代网页开发中,交互性和动态效果是提升用户体验的关键因素。 Matter.js,一个专为网页设计的2D物理引擎,为开发者提供了一种简单而强大的方式,来实现复杂的物理交互效果。 无论是模拟重力、碰撞还是复杂的物体运动,Matter.js 都能轻松应对。 本文将带你深入了解 Matter.js ,并提供实际的代码示例,让你一窥其强大功能

收藏:解决 pip install 出现 error: subprocess-exited-with-error 错误的方法

在使用 pip 安装 Python 包时,有时候会遇到 error: subprocess-exited-with-error 错误。这种错误通常是由于 setuptools 版本问题引起的。本文将介绍如何解决这一问题 当你使用 pip install 安装某个 Python 包时,如果 setuptools 版本过高或过低,可能会导致安装过程出错,并出现类似以下错误信息:error: subpr

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 (debug笔记)

Nn criterions don’t compute the gradient w.r.t. targets error「pytorch」 ##一、 缘由及解决方法 把这个pytorch-ddpg|github搬到jupyter notebook上运行时,出现错误Nn criterions don’t compute the gradient w.r.t. targets error。注:我用