8 lines
203 B
Python
Executable File
8 lines
203 B
Python
Executable File
import open3d as o3d
|
|
|
|
# 加载 .ply 文件
|
|
pcd = o3d.io.read_point_cloud("point_cloud.ply")
|
|
|
|
# 显示点云
|
|
o3d.visualization.draw_geometries([pcd], window_name="PLY Point Cloud", width=800, height=600)
|