我正在尝试在 Python 中使用Trimesh读取和显示 .ply 文件。我已经使用pip install trimesh
以及pyglet
显示文件安装了 Trimesh。
import trimesh
mesh = trimesh.load("file.ply")
mesh.show()
但是,运行此代码时,我不断收到以下错误:
GLException: No GL context; create a Window first
有人可以帮我解决这个问题吗?
我正在尝试在 Python 中使用Trimesh读取和显示 .ply 文件。我已经使用pip install trimesh
以及pyglet
显示文件安装了 Trimesh。
import trimesh
mesh = trimesh.load("file.ply")
mesh.show()
但是,运行此代码时,我不断收到以下错误:
GLException: No GL context; create a Window first
有人可以帮我解决这个问题吗?