如何使用python3.5.2+pyqt5编写无阻塞多线程GUI

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了如何使用python3.5.2+pyqt5编写无阻塞多线程GUI相关的知识,希望对你有一定的参考价值。

参考技术A 之前用pyqt做过GUI,对于长时间操作的任务,就会堵塞。 当时我用多线程来解决,也就是使用threading 模块来解决
这有个多线程的使用教程,你可以参考
http://www.cnblogs.com/fnng/p/3670789.html本回答被提问者采纳
参考技术B 之前用pyqt做过GUI,对于长时间操作的任务,就会堵塞。 当时我用多线程来解决,也就是使用threading 模块来解决

如何在 Python 中使用 PyQt 显示 RGB 图像? [复制]

【中文标题】如何在 Python 中使用 PyQt 显示 RGB 图像? [复制]【英文标题】:How to display an RGB image with PyQt in Python? [duplicate] 【发布时间】:2019-07-17 14:24:31 【问题描述】:

我有一个名为 rgb_array 的具有 3 个通道 (RGB) 的矩阵数组。

我想用 PyQt 来显示。

根据***中的一些(旧)帖子,我编写了以下代码(基于gym-minigrid)

from PyQt5.QtGui import QPixmap
from PyQt5.QtGui import QImage
from PyQt5.QtWidgets import QLabel
from PyQt5.QtWidgets import QMainWindow, QWidget

class Window(QMainWindow):
    """
    Simple application window to render the environment into
    """

    def __init__(self):
        super().__init__()
        # Image label to display the rendering
        self.imgLabel = QLabel()

        # Create a main widget for the window
        mainWidget = QWidget(self)
        self.setCentralWidget(mainWidget)

        # Show the application window
        self.show()
        self.setFocus()

    def setPixmap(self, pixmap):
        self.imgLabel.setPixmap(pixmap)


rgb_array = ...  # my image
height, width, _ = rgb_array.shape
bytes_per_line = 3 * width

qt_img = QImage(rgb_array.data, width, height, bytes_per_line, QImage.Format_RGB888)
pixmap = QPixmap.fromImage(qt_img)

window = Window()

window.setPixmap(pixmap)

但是每次我运行它时,我都会遇到分段错误。任何的想法 ?谢谢!

【问题讨论】:

【参考方案1】:

试试看:

from PyQt5.QtGui import QPixmap, QImage
from PyQt5.QtWidgets import QMainWindow, QWidget, QLabel, QApplication, QGridLayout

import cv2

class Window(QMainWindow):
    """
    Simple application window to render the environment into
    """

    def __init__(self):
        super().__init__()
        # Image label to display the rendering
        self.imgLabel = QLabel()

        # Create a main widget for the window
        mainWidget = QWidget(self)
        self.setCentralWidget(mainWidget)

        layout = QGridLayout(mainWidget)        # +
        layout.addWidget(self.imgLabel)         # +

        # Show the application window
#        self.show()
        self.setFocus()

"""
rgb_array = 'im.png'    # my image
height, width, _ = rgb_array.shape
bytes_per_line = 3 * width
qt_img = QImage(rgb_array.data, width, height, bytes_per_line, QImage.Format_RGB888)
pixmap = QPixmap.fromImage(qt_img)
window = Window()
window.setPixmap(pixmap)
"""

if __name__ == '__main__':
    import sys

    rgb_array = cv2.imread('Ok.png')
    rgb_array = cv2.cvtColor(rgb_array, cv2.COLOR_BGR2RGB)
    h, w, ch = rgb_array.shape
    bytesPerLine = ch * w
    qImg = QImage(rgb_array.data, w, h, bytesPerLine, QImage.Format_RGB888)

    app = QApplication(sys.argv)

    w = Window()
    w.imgLabel.setPixmap(QPixmap.fromImage(qImg))

    w.show()
    sys.exit(app.exec_())

【讨论】:

以上是关于如何使用python3.5.2+pyqt5编写无阻塞多线程GUI的主要内容,如果未能解决你的问题,请参考以下文章

发出 dataChanged 信号 PyQt5

自动运行 python GUI 测试的简单方法

如何在 CentOS 上将 Python3.5.2 设置为默认 Python 版本?

linux:python3.5.2如何下载pandas

如何解决python3.5.2安装scrapy的无法查找到vsvarall的问题

从命令提示符更新 Python 版本并将 PyQt4 转换为 PyQt5