Algorithm 1 Joint axis estimation |
Require: Data , initial estimate , tolerance , residual weights and .
-
1:
for do
-
2:
. ▹ Begin Gauss–Newton.
-
3:
.
-
4:
. ▹ defined by (23).
-
5:
while
do
-
6:
Compute the Jacobian and the residuals according to (31) and (32).
-
7:
.
-
8:
Obtain step length using backtracking line search.
-
9:
.
-
10:
.
-
11:
.
-
12:
.
-
13:
end while
-
14:
. ▹ End Gauss–Newton.
-
15:
.
-
16:
. ▹ Initialize at .
-
17:
end for
-
18:
. ▹Correct sign pairing.
-
19:
return .
|