无法在 Qt 应用程序中重绘 matplot

Posted

技术标签:

【中文标题】无法在 Qt 应用程序中重绘 matplot【英文标题】:Unable to redraw the matplot inside Qt application 【发布时间】:2017-11-12 07:18:22 【问题描述】:

我想调用matplotlib 的draw() 方法,该方法用于更新已更改但未原子重绘的图形。请注意,该图已在 QT 应用程序中构建。以下是错误跟踪:

Traceback (most recent call last):
  File "/usr/local/lib/python2.7/dist-packages/matplotlib/cbook/__init__.py", line 389, in process
    proxy(*args, **kwargs)
  File "/usr/local/lib/python2.7/dist-packages/matplotlib/cbook/__init__.py", line 227, in __call__
    return mtd(*args, **kwargs)
  File "matplotlib_qt.py", line 43, in mouseClick
    self.myMplCanvas.fig.draw()
TypeError: draw_wrapper() takes at least 2 arguments (1 given)

在独立的matplotlib应用程序中,draw方法可以很容易地调用如下:

import matplotlib.pyplot as plt

fig = plt.figure()
# plot here and change plot variables later
# now re-draw it
plt.draw()

下面是完整的QT应用代码:

import sys
from matplotlib.backends import qt_compat
use_pyside = qt_compat.QT_API == qt_compat.QT_API_PYSIDE
if use_pyside:
    from PySide import QtGui, QtCore
else:
    from PyQt4 import QtGui, QtCore

from matplotlib.backends.backend_qt4agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure
import matplotlib.image as mpimg

class MyMplCanvas(FigureCanvas):
    def __init__(self, parent=None, width=5, height=4, dpi=100):
        self.fig = Figure(figsize=(width, height), dpi=dpi)
        self.axes = self.fig.add_subplot(111)

        img = mpimg.imread('stinkbug.png')
        lum_img = img[:, :, 0]
        self.axes.imshow(lum_img)

        FigureCanvas.__init__(self, self.fig)
        self.setParent(parent)

        FigureCanvas.setSizePolicy(self, QtGui.QSizePolicy.Expanding, QtGui.QSizePolicy.Expanding)
        FigureCanvas.updateGeometry(self)

class ApplicationWindow(QtGui.QMainWindow):
    def __init__(self):
        QtGui.QMainWindow.__init__(self)
        self.setAttribute(QtCore.Qt.WA_DeleteOnClose)
        self.setWindowTitle("application main window")

        self.main_widget = QtGui.QWidget(self)
        l = QtGui.QVBoxLayout(self.main_widget)
        self.myMplCanvas = MyMplCanvas(self.main_widget, width=5, height=4, dpi=100)
        l.addWidget(self.myMplCanvas)
        self.main_widget.setFocus()
        self.setCentralWidget(self.main_widget)
        self.myMplCanvas.mpl_connect('button_press_event', self.mouseClick)

    def mouseClick(self, event):
        self.myMplCanvas.fig.draw()


qApp = QtGui.QApplication(sys.argv)
aw = ApplicationWindow()
aw.setWindowTitle("hello")
aw.show()
sys.exit(qApp.exec_())

这里出了什么问题?请有任何解决方法。

【问题讨论】:

【参考方案1】:

请注意,如果fig 是数字,则plt.draw()fig.draw() 不同。为了绘制图形,需要提供渲染器。

但是,您可能想要绘制画布而不是图形。

fig.canvas.draw() # <- not recommended
# better:
fig.canvas.draw_idle() 

在问题的情况下,您已经将画布作为self.myMplCanvas,因此您可以调用

self.myMplCanvas.draw_idle()

【讨论】:

你是想说不推荐 draw() 吗?但是,我什至无法使用它。您能否提供更多解释。非常感谢。 您无法使用fig.draw()。原因是您需要提供渲染器 (fig.draw(renderer))。但是,您不想获取渲染器而是绘制画布。推荐fig.canvas.draw_idle() 优于fig.canvas.draw()。 (有关对此的解释,请参阅this answer 的第一部分。)

以上是关于无法在 Qt 应用程序中重绘 matplot的主要内容,如果未能解决你的问题,请参考以下文章

如何在 SWIFT 中重绘我的视图?

在 MFC 中重绘形状

在 MFC 中重绘时闪烁

实现没有饥饿的while循环以在wpf中重绘图像

Android:在布局中重绘特定视图

如何在 coco-touch iOS 中重绘视图?