我是PyQt和pyqtgraph的新手。我已经设法使用Qt设计器为我的需求创建了一个GUI。在设计时我已经在我的布局上定义了一个区域,其中必须显示图像。
from PyQt5 import QtCore, QtGui, QtWidgets
from pyqtgraph.Qt import QtCore, QtGui
import pyqtgraph as pg
class Ui_MainWindow(object):
def setupUi(self, MainWindow):
MainWindow.setObjectName("MainWindow")
MainWindow.resize(926, 859)
self.centralwidget = QtWidgets.QWidget(MainWindow)
self.centralwidget.setObjectName("centralwidget")
self.Display = QtWidgets.QGraphicsView(self.centralwidget)
self.Display.setGeometry(QtCore.QRect(30, 130, 461, 541))
font = QtGui.QFont()
font.setPointSize(10)
font.setBold(True)
font.setWeight(75)
self.Display.setFont(font)
self.Display.setMouseTracking(True)
self.Display.setAutoFillBackground(False)
self.Display.setFrameShadow(QtWidgets.QFrame.Sunken)
self.Display.setObjectName("Display")
self.display = QtWidgets.QLabel(self.centralwidget)
self.display.setGeometry(QtCore.QRect(240, 110, 57, 14))
font = QtGui.QFont()
font.setPointSize(10)
self.display.setFont(font)
self.display.setObjectName("display")
self.display = QtWidgets.QPushButton(self.centralwidget)
self.display.setGeometry(QtCore.QRect(30, 40, 191, 31))
font = QtGui.QFont()
font.setPointSize(10)
font.setBold(True)
font.setItalic(False)
font.setWeight(75)
self.display.setFont(font)
self.display.setMouseTracking(True)
self.display.setAutoRepeat(False)
self.display.setAutoDefault(True)
self.display.setDefault(False)
self.display.setFlat(False)
self.display.setObjectName("camera_string")
self.display.clicked.connect(self.Plot)
def Plot(self):
img = np.random.normal(size = (512,512))
// img has to be displayed in the QGraphicsView region using pyqtgraph.
请帮忙。