Mayavi mlab,Qt线程 - 致命的python错误:已经跟踪了GC对象

时间:2016-07-14 15:47:23

标签: multithreading python-2.7 qt garbage-collection mayavi

我有一个python GUI,它通过套接字从C ++应用程序接收数据,并更新其字段(Qt网格对象)和Qthread中的3D模型。更新字段在线程中正常工作,但我得到了一个"致命的Python错误:已经跟踪了GC对象"当我添加一个函数来更新3D模型(使用更新的字段中的值)到线程中。代码运行几毫秒但随后崩溃并出现错误。 3D模型的创建和转换基于Mayavi.mlab包。

我也尝试将更新3D模型函数放在另一个线程中,但这并没有消除错误。为什么会发生这种错误/如何摆脱它?

主要代码:

    self.PSRThread = 0      # thread for the PSR server communication

    self.PSRUpdateThread = QtCore.QThread() # thread for updating the PSR fields
    self.PSRUpdateThread.start()
    self.PSRComm = 0

def InitPSRComm(self):      # activates on button click
            if (self.PSRThread == 0):
                self.PSRThread = ServerPSR.StartThread()                   
                self.PSRComm = UpdatePSRFields.PSRFieldUpdater( self.UpdateJointFields, self.PSRThread.receiveJointData,
                                    self.PSRThread.sendJointData, self.MovePSRModel, self.GetJoints,
                                    self.PSRTargetJointFields )
                self.PSRComm.sending = True
                self.PSRComm.moveToThread(self.PSRUpdateThread)
                self.PSRComm.start.emit("Start")
                print "Update PSR Fields thread started"

            if (self.PSRComm.sending == False):
                    self.PSRComm.sending = True

线程代码:

class PSRFieldUpdater(QtCore.QObject):

start = QtCore.Signal(str)

def __init__(self, UpdateFieldsFunc, PSRThreadRecvFunc, PSRThreadSendFunc, UpdatePSRModelFunc, GetJointsFunc,
             *args):
    super(PSRFieldUpdater, self).__init__()

    self.UpdateFieldsFunc = UpdateFieldsFunc
    self.PSRThreadRecvFunc = PSRThreadRecvFunc
    self.PSRThreadSendFunc = PSRThreadSendFunc
    self.UpdatePSRModelFunc = UpdatePSRModelFunc
    self.GetJointsFunc = GetJointsFunc
    self.args = args
    self.start.connect(self.run)
    self.sending = False

def run(self):
    while (True):
        #print "sending status is: ", self.sending
        if (self.sending):
            PSRjoints = self.GetJointsFunc(*self.args)
            self.PSRThreadSendFunc(PSRjoints)
            #print "PSRThreadSendFunc called"
            self.sending = False
        j = self.PSRThreadRecvFunc()
        self.UpdateFieldsFunc(j)
        print "PSR fields updated"
        self.UpdatePSRModelFunc()

MovePSRModel():

def MovePSRModel(self):
            PSRjoints = self.GetJoints(self.PSRJointFields)
            j = transformPSR.PSRJoints(PSRjoints, partsList)
            j.MovePSR(PSRjoints, partsList)

如果需要任何其他信息,请告诉我。

1 个答案:

答案 0 :(得分:0)

事实证明,当您尝试在主线程中使用线程时,Qt GUi会发生奇怪的事情(我发现this link是相关的)。我在主GUI线程中实现了一些东西,并使用信号与它进行通信以进行更新。