6

我有一些数据,其中包含几个 2D 图像,我想使用mayavi2 (v4.3.0).

从文档看来,我应该只能用mlab.imshow(). imshow不幸的是,当我调用指定extent参数 ( AttributeError: 'ImageActor' object has no attribute 'actor')时,mayavi 会引发异常。

我还尝试通过修改直接设置 x、y 和 z 数据im.mlab_source.x,y,z...。奇怪的是,虽然这正确地改变了 x 和 y 范围,但它对 z 位置没有任何作用,即使发生了im.mlab_source.z明显的变化。

这是一个可运行的示例:

import numpy as np
from scipy.misc import lena
from mayavi import mlab

def normal_imshow(img=lena()):
    return mlab.imshow(img,colormap='gray') 

def set_extent(img=lena()):
    return mlab.imshow(img,extent=[0,100,0,100,50,50],colormap='cool')

def set_xyz(img=lena()):
    im = mlab.imshow(img,colormap='hot')    
    src = im.mlab_source
    print 'Old z :',src.z
    src.x = 100*(src.x - src.x.min())/(src.x.max() - src.x.min())
    src.y = 100*(src.y - src.y.min())/(src.x.max() - src.y.min())
    src.z[:] = 50
    print 'New z :',src.z
    return im

if __name__ == '__main__':

    # this works
    normal_imshow()

    # # this fails (AttributeError)
    # set_extent()

    # weirdly, this seems to work for the x and y axes, but does not change
    # the z-postion even though data.z does change
    set_xyz()
4

1 回答 1

5

好的,事实证明这是 mayavi 中的一个已知错误ImageActor但是,可以在创建对象后更改对象的方向、位置和比例:

obj = mlab.imshow(img)
obj.actor.orientation = [0, 0, 0]  # the required orientation 
obj.actor.position = [0, 0, 0]     # the required  position 
obj.actor.scale = [0, 0, 0]        # the required scale
于 2013-04-10T19:45:19.550 回答