包含mayavi.mlab情节的Tkinter画布

时间:2015-12-08 06:05:43

标签: python tkinter mayavi tkinter-canvas mayavi.mlab

我一直在研究使用mayavi.mlab生成的3D绘图,然后使用Tkinter生成一个GUI窗口,以改变我的3D绘图的一些参数(确切地说是2)。我的问题是我无法将画布从Tkinter连接到主持我的mayavi情节。更加具体: 我为我的3D计算创建了一个类,并为GUI创建了一个类。

import numpy as np
from mayavi import mlab
from Tkinter import *
import tkMessageBox as msg
class 3Dplot_calc:

    x,y,z = np.mgrid[-10:10:150j,-10:10:150j,-10:10:150j]

    def __init__(self, R, I):
      self.R = R
      self.I = I

介于两者之间有一系列方法来帮助计算有用的部分

class GUI:    

    def __init__(self,master):    
        frame = Frame(master)
        frame.pack()
        self.Set_Figure(frame)
        self.Inputs(frame)

    def Set_Figure(self,frame):
        self.fig = mlab.figure(1, size=(500,500))
        ### i need to attach it to the canvas somehow and make it upgrade

这是我被困的地方! GUI类继续为R和I定义滑块,一些其他按钮,一个绘图按钮并定义它们在框架中的位置。相关部分是:

    def Inputs(self,frame):
        input_frame = Frame(frame)
        input_frame.grid(column=0, row=0)

        #Add Sliders
        self.slR = Scale(input_frame, from_=1.0, to=5.0, orient=HORIZONTAL)
        self.slR.set(1.0)

        self.slI = Scale(input_frame, from_=-5.0, to=5.0, orient=HORIZONTAL)
        self.slI.set(1.0)

        #Add Plot Button
        self.plot_button = Button(input_frame, text='PLOT', command = self.Generate_Values)

    def Generate_Values(self):    
        R = int(self.slR.get())
        I = float(self.slI.get())

        a = 3Dplot_calc(R,I)
        Bx,By,Bz = a.Bx, a.By, a.Bz #Those are the useful methods 
        field = mlab.pipeline.vector_field(Bx, By, Bz)
        magnitude = mlab.pipeline.extract_vector_norm(field)
        contours = mlab.pipeline.iso_surface(magnitude,contours=3)

        field_lines = mlab.pipeline.streamline(magnitude, seedtype='line',
                                    integration_direction='both')       
        self.canvas.show()
root = Tk()
gui = GUI(root)
root.mainloop() 

3Dplot类可以自行运行。我得到的错误是:GUI实例没有属性'canvas'。  如果需要,我可以编辑帖子并填写完整的代码。

1 个答案:

答案 0 :(得分:0)

出于根本原因,我不认为这是可能的。一个程序只能有一个GUI后端运行事件循环,而IIUC,当前版本的Mayavi只支持Qt(井)和Wx(有些)后端,而不是Tkinter。我建议使用带有Qt后端的TraitsUI来改变你的参数而不是TKinter。例如。见http://docs.enthought.com/mayavi/mayavi/auto/example_mayavi_traits_ui.html