Skip to content

Commit b7fd8ed

Browse files
committed
feat(visualization): Show window title by library (open3d or pymeshlab)
1 parent c538ab6 commit b7fd8ed

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

surface_reconstruction/batch_visualization/open3d_batch.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,8 @@
1515
)
1616
o3d.visualization.draw_geometries(
1717
[mesh, mesh_frame],
18+
window_name='OPEN3D Visualization',
19+
width=1024,
20+
height=768,
1821
mesh_show_back_face=True
1922
)

surface_reconstruction/batch_visualization/pymeshlab_batch.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
)
2222
o3d.visualization.draw_geometries(
2323
[mesh, mesh_frame],
24+
window_name='Meshlab Visualization',
25+
width=1024,
26+
height=768,
2427
mesh_show_back_face=True
2528
)
2629

0 commit comments

Comments
 (0)