有效地吸引许多领域 [英] draw many spheres efficiently

查看:84
本文介绍了有效地吸引许多领域的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要在一张图片中绘制许多大小的球体.以下代码可以正常运行,但是要花很长时间.

I need to draw many spheres, small and large, in one picture. The following code works, but takes awfully long to run.

import matplotlib.pyplot as plt
from mpl_toolkits.mplot3d import Axes3D
import numpy

fig = plt.figure()
ax = fig.gca(projection='3d')
ax.set_aspect('equal')

u = numpy.linspace(0, 2*numpy.pi, 100)
v = numpy.linspace(0, numpy.pi, 100)
x = numpy.outer(numpy.cos(u), numpy.sin(v))
y = numpy.outer(numpy.sin(u), numpy.sin(v))
z = numpy.outer(numpy.ones(numpy.size(u)), numpy.cos(v))

for k in range(200):
    c = numpy.random.rand(3)
    r = numpy.random.rand(1)
    ax.plot_surface(
        r*x + c[0], r*y + c[1], r*z + c[2],
        color='#1f77b4',
        alpha=0.5,
        linewidth=0
        )

plt.show()

我正在寻找一种更有效的解决方案.也许我没有找到matplotlib中的本地球形艺术家?

I'm looking for a more efficient solution. Perhaps there is a native sphere artist in matplotlib that I didn't find?

推荐答案

不,没有球形艺术家"之类的东西.即使有,绘制它的时间也不会减少.

No, there is no such thing as a "sphere artist". And even if there was, it would not take less time to draw it.

您在问题中提出的解决方案是绘制多个领域的明智方法.但是,您可能要考虑减少球体上的点数

The solution you present in the question is a sensible way to draw many spheres. However, you might want to consider using a lot less points on the sphere,

u = numpy.linspace(0, 2*numpy.pi, 12)
v = numpy.linspace(0, numpy.pi, 7)

应该始终考虑的一种选择是不使用matplotlib进行3D绘图,因为它不实际上是为此设计的;并使用 Mayavi 代替. 上面的mayavi看起来像

An option one should always consider is not to use matplotlib for 3D plotting, as it is not actually been designed for it; and use Mayavi instead. The above in mayavi would look like

from mayavi import mlab
import numpy as np

[phi,theta] = np.mgrid[0:2*np.pi:12j,0:np.pi:12j]
x = np.cos(phi)*np.sin(theta)
y = np.sin(phi)*np.sin(theta)
z = np.cos(theta)

def plot_sphere(p):
    r,a,b,c = p
    return mlab.mesh(r*x+a, r*y+b, r*z+c)  


for k in range(200):
    c = np.random.rand(4)
    c[0] /= 10.
    plot_sphere(c)

mlab.show()

尽管计算所需的时间相似,但在Mayavi中进行交互式缩放或平移要快得多.

While the calculation takes a similar time, interactively zooming or panning is much faster in Mayavi.

此外,Mayavi实际上提供了类似于球形艺术家"的名称,称为

Furthermore Mayavi actually provides something like a "sphere artist", which is called points3d

from mayavi import mlab
import numpy as np

c = np.random.rand(200,3)
r = np.random.rand(200)/10.

mlab.points3d(c[:,0],c[:,1],c[:,2],r)

mlab.show()

这篇关于有效地吸引许多领域的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆