Python 在类实例调用时崩溃
Posted
技术标签:
【中文标题】Python 在类实例调用时崩溃【英文标题】:Python crash on class instance call 【发布时间】:2013-05-31 08:00:32 【问题描述】:我正在使用 pyqtgraph 进行实时数据绘图。不幸的是,该库不支持时间序列实时绘图,所以我去谷歌搜索,发现有人为此编写了特定的类(你可以找到它here)。我曾经使用过这些类,完全没有问题,但现在 python 在调用 'TimeSeriesPlot()' 类时立即崩溃。我试图删除python文件夹和所有子文件夹中的所有.pyc文件,但这并没有改变任何东西,python安装的修复也没有。关于导致问题的原因以及如何解决问题的任何想法?有没有人遇到过这样的问题? 我的配置是:
Windows 7 家庭版块引用 Python 2.7.5 带有 QT 4.8 的 Pyside 1.1.2 PyQtGraph 0.9.7这是我一直在尝试执行的文件的内容:
from pyqtgraph.Qt import QtGui, QtCore
import numpy as np
import pyqtgraph as pg
class TimeSeriesPlotViewBox(pg.ViewBox):
def __init__(self, timeSeriesPlot, *args, **kwds):
pg.ViewBox.__init__(self, *args, **kwds)
self.timeSeriesPlot = timeSeriesPlot
def mouseClickEvent(self, ev):
if ev.button() == QtCore.Qt.RightButton:
self.timeSeriesPlot.xFrom = None
self.timeSeriesPlot.xTo = None
self.timeSeriesPlot.updateView()
self.enableAutoRange(pg.ViewBox.XAxis,1.0)
self.enableAutoRange(pg.ViewBox.YAxis,1.0)
def mouseDoubleClickEvent(self, ev):
if ev.button() == QtCore.Qt.LeftButton:
xFrom = 0
if not self.timeSeriesPlot.xFrom is None and self.timeSeriesPlot.xFrom < 0:
xFrom = self.timeSeriesPlot.xFrom
else:
xFrom = -len(self.timeSeriesPlot.timedata)
self.timeSeriesPlot.xFrom = int(round(xFrom / 2.0))
self.timeSeriesPlot.updateView()
self.enableAutoRange(pg.ViewBox.XAxis,1.0)
self.enableAutoRange(pg.ViewBox.YAxis,1.0)
def mouseDragEvent(self, ev):
if ev.button() == QtCore.Qt.RightButton:
ev.ignore()
else:
pg.ViewBox.mouseDragEvent(self, ev)
class TimeSeriesPlot(pg.QtCore.QObject):
def __init__(self, tsTitle, parent = None):
pg.QtCore.QObject.__init__(self, parent)
self.vb =TimeSeriesPlotViewBox(self)
self.plt = pg.PlotWidget(viewBox=self.vb, title = tsTitle)
self.vb.sigRangeChangedManually.connect(self.zoom)
#time axis
self.timedata = []
#val data
self.valdata = []
self.curveVal = pg.PlotDataItem([])
self.plt.addItem(self.curveVal)
self.xFrom = -50
self.xTo = None
def zoom(self):
xlimits,ylimits = self.vb.viewRange()
import bisect
self.xFrom = bisect.bisect_left(self.timedata,xlimits[0])
self.xTo = bisect.bisect_right(self.timedata,xlimits[1])
self.vb.disableAutoRange(pg.ViewBox.XAxis)
self.vb.disableAutoRange(pg.ViewBox.YAxis)
self.updateView()
def show(self):
self.plt.show()
def updateModel(self,newdata):
time = float(newdata["time"])
val = float(newdata["val"])
self.timedata.append(time)
self.valdata.append(val)
def updateView(self):
useAA = True
viewSlice = None
maxElementCnt = 500.0
if self.xFrom is None and self.xTo is None:
elementCnt = len(self.timedata)
step = max(int(round(elementCnt / maxElementCnt)),1)
viewSlice = slice(-elementCnt,None,step)
elif self.xFrom < 0:
elementCnt = -self.xFrom
step = max(int(round(elementCnt / maxElementCnt)),1)
viewSlice = slice(-elementCnt,None,step)
else:
elementCnt = self.xTo - self.xFrom
step = max(int(round(elementCnt / maxElementCnt)),1)
viewSlice = slice(self.xFrom,self.xTo,step)
useAA = True
self.curveVal.setData(x=self.timedata[viewSlice],y=self.valdata[viewSlice],clear=True,antialias=useAA)
####################################
TimeSeriesPlot('plot')
【问题讨论】:
请出示您的例外情况。 没有异常可以显示。 Python 无声地崩溃。所有其他事情都继续运行良好。 你能提供一个例子来说明你是如何使用链接类的吗?另外,请提供有关您的操作系统以及 pyqt 和 pyqtgraph 版本的信息。 这是我的配置。我只是试图调用一个空实例。我在 SO 上的代码块格式化有问题,但代码在我的计算机上已正确格式化。 【参考方案1】:我在运行此代码时看到的第一条错误消息是:
QWidget: Must construct a QApplication before a QPaintDevice
这适用于所有 Qt 应用程序;您必须先创建一个 QApplication 实例。修复此问题后,脚本仍然会因分段错误而崩溃,可能是因为 TimeSeriesPlot 实例被立即删除(因为它没有分配给任何变量)。即使在修复之后,脚本也会立即退出(因为没有其他事情可做)。我用以下代码替换了您示例中的最后一行以获得预期的结果:
app = pg.QtGui.QApplication([])
tsp = TimeSeriesPlot('plot')
tsp.show()
app.exec_()
【讨论】:
谢谢!我希望做错事,因为我是 python 和一般编程的初学者。实际上,我想出这个文件是因为我曾经让这些类工作过,当我的崩溃问题开始时,我试图通过一次删除一行来跟踪我的错误。以上是关于Python 在类实例调用时崩溃的主要内容,如果未能解决你的问题,请参考以下文章