官方github网址:
https://github.com/dranjan/python-plyfile
安装plyfile库:pip install plyfile
from plyfile import PlyData
使用
plydata = PlyData.read('tet.ply')
或
with open('tet.ply', 'rb') as f:
... plydata = PlyData.read(f)
官方github网址:
https://github.com/dranjan/python-plyfile
安装plyfile库:pip install plyfile
from plyfile import PlyData
使用
plydata = PlyData.read('tet.ply')
或
with open('tet.ply', 'rb') as f:
... plydata = PlyData.read(f)