-
Notifications
You must be signed in to change notification settings - Fork 1
/
visualization.py
39 lines (30 loc) · 1.28 KB
/
visualization.py
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
# Open3D: www.open3d.org
# The MIT License (MIT)
# See license file or visit www.open3d.org for details
# examples/Python/Utility/visualization.py
import copy
import open3d as o3d
flip_transform = [[1, 0, 0, 0], [0, -1, 0, 0], [0, 0, -1, 0], [0, 0, 0, 1]]
def draw_geometries_flip(pcds):
pcds_transform = []
for pcd in pcds:
pcd_temp = copy.deepcopy(pcd)
pcd_temp.transform(flip_transform)
pcds_transform.append(pcd_temp)
o3d.visualization.draw_geometries(pcds_transform)
def draw_registration_result(source, target, transformation):
source_temp = copy.deepcopy(source)
target_temp = copy.deepcopy(target)
source_temp.paint_uniform_color([1, 0.706, 0])
target_temp.paint_uniform_color([0, 0.651, 0.929])
source_temp.transform(transformation)
source_temp.transform(flip_transform)
target_temp.transform(flip_transform)
o3d.visualization.draw_geometries([source_temp, target_temp])
def draw_registration_result_original_color(source, target, transformation):
source_temp = copy.deepcopy(source)
target_temp = copy.deepcopy(target)
source_temp.transform(transformation)
source_temp.transform(flip_transform)
target_temp.transform(flip_transform)
o3d.visualization.draw_geometries([source_temp, target_temp])