详解python polyscope库的安装和例程
程序员文章站
2022-09-17 16:27:24
安装就可以在环境配置好的情况下使用pip安装:pip install polyscope如果提示找不到库文件,no moudle的话可以试着把安装下来的polyscope文件夹放在和想要运行的py文件...
安装就可以在环境配置好的情况下使用pip安装:
pip install polyscope
如果提示找不到库文件,no moudle的话可以试着把安装下来的polyscope文件夹放在和想要运行的py文件的同一目录下。
而我们安装下来的polyscope文件夹在哪里呢?它们应该位于安装目录中的"lib/site-packages"中,我的如下图所示:
但是装好之后我们运行一个网上的例程:
import polyscope as ps # initialize polyscope ps.init() ### register a point cloud # `my_points` is a nx3 numpy array ps.register_point_cloud("my points", my_points) ### register a mesh # `verts` is a nx3 numpy array of vertex positions # `faces` is a fx3 array of indices, or a nested list ps.register_surface_mesh("my mesh", verts, faces, smooth_shade=true) # add a scalar function and a vector function defined on the mesh # vertex_scalar is a length v numpy array of values # face_vectors is an fx3 array of vectors per face ps.get_surface_mesh("my mesh").add_scalar_quantity("my_scalar", vertex_scalar, defined_on='vertices', cmap='blues') ps.get_surface_mesh("my mesh").add_vector_quantity("my_vector", face_vectors, defined_on='faces', color=(0.2, 0.5, 0.5)) # view the point cloud and mesh we just registered in the 3d ui ps.show()
还是有错误,找不到polyscope_bindings,我的解决办法是在这个目录下面还应该有一个这个文件:
把他的名字改成polyscope_bindings.pyd就可以解决,库就可以跑通了。但是原例程因为没有给数组所有还有逻辑错误,随便给几个就可以运行了:
import polyscope as ps import numpy as np # initialize polyscope ps.init() ### register a point cloud # `my_points` is a nx3 numpy array my_points=np.array([[1,1,1],[1,2,3],[1,2,4],[2,5,3],[2,2,2]]) ps.register_point_cloud("my points", my_points) ### register a mesh # `verts` is a nx3 numpy array of vertex positions # `faces` is a fx3 array of indices, or a nested list verts=np.array([[1,1,1],[1,2,3],[1,2,4],[2,5,3],[2,2,2]]) faces=np.array([[1,1,1],[1,2,3],[1,2,4],[2,4,3],[2,2,2]]) ps.register_surface_mesh("my mesh", verts, faces, smooth_shade=true) # add a scalar function and a vector function defined on the mesh # vertex_scalar is a length v numpy array of values # face_vectors is an fx3 array of vectors per face vertex_scalar = np.array([1,2,3,4,5]) face_vectors=np.array([[1,1,1],[1,2,3],[1,2,4],[2,5,3],[2,2,2]]) ps.get_surface_mesh("my mesh").add_scalar_quantity("my_scalar", vertex_scalar, defined_on='vertices', cmap='blues') ps.get_surface_mesh("my mesh").add_vector_quantity("my_vector", face_vectors, defined_on='faces', color=(0.2, 0.5, 0.5)) # view the point cloud and mesh we just registered in the 3d ui ps.show()
这就可以成功使用了
到此这篇关于python polyscope库的安装和例程的文章就介绍到这了,更多相关python polyscope库内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!
推荐阅读
-
Linux上安装Python的PIL和Pillow库处理图片的实例教程
-
Linux上安装Python的PIL和Pillow库处理图片的实例教程
-
python pandas库的安装和创建
-
Linux下安装python3.6和第三方库的教程详解
-
python库lxml在linux和WIN系统下的安装
-
详解python第三方库的安装、PyInstaller库、random库
-
mac下给python3安装requests库和scrapy库的实例
-
Python BS4库的安装与使用详解
-
Windows下的Python 3.6.1的下载与安装图文详解(适合32位和64位)
-
详解python polyscope库的安装和例程