我无法重复使用 QTimer
- 生成一个高×宽×3的numpy数组
- 将 numpy 数组转换为 Qt 友好的图像,以及
- 在 Qt 主窗口中显示图像
(最终图像不会是随机的。)
这是相关的代码。
import numpy as np
from scipy.misc.pilutil import toimage
from PIL.ImageQt import ImageQt
def nparrayToQPixmap(arrayImage):
pilImage = toimage(arrayImage)
qtImage = ImageQt(pilImage)
qImage = QtGui.QImage(qtImage)
qPixmap = QtGui.QPixmap(qImage)
return qPixmap
class DetectionWidget(QtGui.QWidget):
def __init__(self):
super(DetectionWidget, self).__init__()
self.timer = QtCore.QTimer()
self.init_UI()
def init_UI(self):
self.setFixedSize(self.WIDTH, self.HEIGHT)
self.label = QtGui.QLabel(self)
self.label.resize(self.WIDTH, self.HEIGHT)
self.timer.timeout.connect(self.onTimeout)
self.timer.start(1000)
def onTimeout(self):
npImage = np.random.rand(self.HEIGHT, self.WIDTH, 3)
qPixmap = nparrayToQPixmap(npImage)
self.label.setPixmap(qPixmap)
这将显示第一张图像,但 Python 在第二次迭代时出现分段错误self.label.setPixmap(qPixmap)
。此外,即使我不更新标签而是使用 保存图像,它也会出现分段错误qPixmap.save(...)
,这让我认为生成的 qPixmap 在第一次迭代后以某种方式损坏。
我将不胜感激任何帮助!