我无法将通过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。