aboutsummaryrefslogtreecommitdiffstats
path: root/meowpp/math/!readme.asciidoc
blob: 062b45dbfd13677e54fe6702bc7e90898a87cf2c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73


===== utility.h

數學相關的小 function 雜七雜八的不知道歸類何處

.Functions
* noEPS()
* normalize()
* denormalize()
* ratioMapping()
* inRange()
* squ()
* cub()
* average()
* average()
* tAbs()

.Constants
* PI

===== Matrix.h

.Classes
* `meow::Matrix<Entry>`

===== Vector.h

實作上將 *Matrix* 重新包裝

.Classes
* `meow::Vector<Scalar>`

===== Transformation.h

各種轉換的 Base Class, 這裡所謂的 *Transformation* 形式上不一定要是 Linear,
但原則上都是 *input a vector, output a vector* 其中input/output的dimension可以
不同.

.Classes
* `meow::Transformation<Scalar>`

===== Transformations.h

包含各種 *Non-Linear* transformation

.Classes
* `meow::BallProjection<Scalar>`
* `meow::PhotoProjection<Scalar>`

===== LinearTransformation.h

各種 LinearTransformation 的Base Class, 繼承自 `meow::Transformation`

.Classes
* `meow::LinearTransformation<Scalar>`

===== LinearTransformations.h

各種 *Linear* Transformation

.Classes
* `meow::Rotation3D<Scalar>`

===== methods.h

一些數學方法

.Functions
* ransac()
* levenbergMarquardt()