我有這樣一個Python中的圖表: # Each element is a tuple with coordinates (x,y,z).
# The index is the id of the vertex
vertexList = [(0,0,0),(1,0,0),(1,1,0),(0,1,0),
(0,0,1),(1,0,1),(1,1,1),(0,1,1)]
#
我想添加一個比例尺(例如顯示多大的微米)到我用mlab創建的mayavi圖。 例如,引用了這個問題:How to display a volume with non-cubic voxels correctly in mayavi 我可以用 from enthought.mayavi import mlab
import numpy as np
s=64
x,y,z = np.ogrid[
我想在Qt4窗口中嵌入一個VTK5可視化文件,但沒有多少運氣。下面的代碼不會在我的Mac(10.6,Python 2.7版)工作: from PyQt4 import QtGui
from vtk.qt4 import QVTKRenderWindowInteractor
import sys
class Window(QVTKRenderWindowInteractor.QVTKRend