1

我无法重复使用 QTimer

  1. 生成一个高×宽×3的numpy数组
  2. 将 numpy 数组转换为 Qt 友好的图像,以及
  3. 在 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 在第一次迭代后以某种方式损坏。

我将不胜感激任何帮助!

4

1 回答 1

1

这似乎是因为QImagetoQPixmap转换中的错误。只要QImage格式正确,代码就可以工作..

qImage = QtGui.QImage(qtImage)

变成

qImage = QtGui.QImage(qtImage).convertToFormat(QtGui.QImage.Format_ARGB32)
于 2013-04-02T12:40:37.010 回答