Python点插值的3D点

时间:2013-11-19 18:49:26

标签: python 3d interpolation point

我在Python中插入3D数据点时遇到问题。 我有这样简单的数据结构:

class Point( object ):
def __init__( self, x, y, z, data ):
    self.x, self.y, self.z = x, y, z
    self.data = data

x,y,z是3D笛卡儿空间中的坐标,此时数据是标量值。

我正在尝试此处显示的方法:Interpolation/subsampling of 3D data in python without VTK,但我有问题让它正常工作。

1 个答案:

答案 0 :(得分:1)

你可以使用scipy的插值函数。 unutbu的第一个答案正是如此。或者,您可以在此处了解此功能:http://docs.scipy.org/doc/scipy/reference/interpolate.html