1
0
Fork 0
NotesUESTC/算法开发笔记/VSLAM笔记/VINS的基本数学知识.md

32 lines
1.4 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters!

This file contains invisible Unicode characters that may be processed differently from what appears below. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to reveal hidden characters.

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

## 一、群、李群、李代数
群是一种代数结构,它是由集合加运算组成的。我们把运算记作$\cdot$,群要求这个运算满足封闭性 、结合律、幺元、逆四个性质。李群是具有光滑(连续)性质的群。那么马上可以想到全体单位四元数的集合加上四元数乘法也是群,其乘法满足群要求的四个性质,由于四元数是连续的所以全体单位四元数的集合加上四元数乘法也是李群。
SO(3) : 特殊正交群
SE(3) : 特殊欧式群
## 二、视觉里程计
**2.5 回环检测**
无论是视觉SLAM还是激光SLAM随着系统持续运行仅仅依靠视觉里程计会导致误差不断的积累长期运行后结果将是不可靠的。所谓回环检测回即是回到原点环表示系统走过的路径的轨迹是一个环形。最简单的描述就是检测SLAM系统绕了一圈回到原来走过的地方。
## 三、误差评估
**3.1 准确率、精确率和召回率**
- TPTrue Positive正确的正例一个实例是正类并且也被判定成正类
- FNFalse Negative错误的反例漏报本为正类但判定为假类
- FPFalse Positive错误的正例误报本为假类但判定为正类
- TNTrue Negative正确的反例一个实例是假类并且也被判定成假类
$$
Accuracy = \frac{TP+TN}{TP+TN+FP+FN} \\
Precision = \frac{TP}{TP +FP} \\
Reacall = \frac{TP}{TP +FN}
$$