将VTK图像导入Mayavi

时间:2015-06-19 02:31:58

标签: python vtk mayavi

我无法将通过VTK读取的图像导入Mayavi管道。我想使用Mayavi体绘制工具来渲染VTK图像,但我无法弄清楚如何将图像输入Mayavi。我能够毫无问题地阅读图像:

from tvtk.api import tvtk
reader = tvtk.MetaImageReader() 
reader.file_name = "image.mhd"
reader.update() 

但现在我无法弄清楚如何将读者的输出输入Mayavi。我想使用图像中的数据作为Mayavi体积渲染器的输入,就像在this example中一样,但是我还没有能够从VTK图像和管道中获取原始数据直到Mayavi。

0 个答案:

没有答案