forked from instance-based-loc/instance-based-loc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.py
More file actions
61 lines (47 loc) · 1.05 KB
/
test.py
File metadata and controls
61 lines (47 loc) · 1.05 KB
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
from utils.fpfh_register import get_SVD_transform
import numpy as np
# source_points = np.array([
# [1.0, 2.0, 3.0],
# [4.0, 5.0, 6.0],
# [7.0, 8.0, 9.0]
# ])
# target_points = np.array([
# [1.0, 2.0, 3.0],
# [4.0, 5.0, 6.0],
# [7.0, 8.0, 9.0],
# ])
# print(get_SVD_transform(source_points, target_points))
source_points = np.array([
[1.0, 0.0, 0.0],
[0.0, 1.0, 0.0],
[0.0, 0.0, 1.0]
])
target_points = np.array([
[0.0, 1.0, 0.0],
[-1.0, 0.0, 0.0],
[0.0, 0.0, 1.0]
])
print(get_SVD_transform(source_points, target_points))
source_points = np.array([
[1.0, 0.0, 0.0],
[0.0, 1.0, 0.0],
[0.0, 0.0, 1.0]
])
target_points = np.array([
[1.0, 1.0, 0.0],
[0.0, 0.0, 0.0],
[-1.0, -1.0, 1.0]
])
print(get_SVD_transform(source_points, target_points))
source_points = np.array([
[1.0, 2.0, 3.0],
[4.0, 5.0, 6.0],
[7.0, 8.0, 9.0]
])
target_points = np.array([
[1.5, 2.5, 3.5],
[4.5, 5.5, 6.5],
[7.5, 8.5, 9.5]
])
print(get_SVD_transform(source_points, target_points))
exit(0)