在 pyplot 中添加图像会降低它们的分辨率吗?

Does adding images in pyplot lowers their resolution?

如下代码

from PyQt5.QtWidgets import *
from PyQt5.QtCore import *
from PyQt5.QtGui import *

import sys

from matplotlib.backends.backend_qt5agg import FigureCanvasQTAgg as FigureCanvas
from matplotlib.figure import Figure

from matplotlib.offsetbox import OffsetImage, AnnotationBbox

import matplotlib.pyplot as plt
import numpy as np

class View(QGraphicsView):

    def __init__(self):
        super(View, self).__init__()

        self.initScene(5)

    def initScene(self,h):     

        self.scene = QGraphicsScene()
        self.figure = plt.figure()
        self.canvas = FigureCanvas(self.figure)
        self.figure.subplots_adjust(left=0.03,right=1,bottom=.1,top=1,wspace=0, hspace=0)

        ax = self.figure.add_subplot(111)
        ax.set_xlim([0,1000])
        data = np.random.rand(1000)
        ax.plot(data, '-') 

        arr_img = plt.imread('sampleimage.jpg',format='jpg')
        im = OffsetImage(arr_img,zoom=.9)

        ab = AnnotationBbox(im, (.5, .5), xycoords='axes fraction')
        ax.add_artist(ab)

        self.canvas.draw()
        self.setScene(self.scene)
        self.scene.addWidget(self.canvas)

class MainWindow(QMainWindow):

    def __init__(self):
        super(MainWindow,self).__init__()

        #self.setGeometry(150, 150, 700, 550) 

        self.view = View()
        self.setCentralWidget(self.view)

app = QApplication(sys.argv)

window = MainWindow()
window.show()

app.exec_()

生成左下方所示的输出。右边是我在代码中导入的原始图像('sampleimage.jpg')。

分辨率的差异很明显。有没有办法将图像添加到绘图中,同时保持其质量?

在问题的代码中,OffsetImage 被赋予一个参数 zoom=0.9。这意味着原始图像的每个像素在屏幕上占用 0.9/0.72=1.25 个像素。因此需要将原始图像的 5 个像素压缩成屏幕上的 4 个像素。这不可避免地会导致在代码输出中观察到的一些伪像。

如果要求以原始图像的精确分辨率显示图像,您需要确保 OffsetImage 每个像素恰好使用一个像素。这可以通过将缩放设置为 72 的 ppi 来实现。除以图形 dpi(默认为 100)。

OffsetImage(arr_img, zoom=72./self.figure.dpi)

因此,显示的图像在 matplotlib 绘图中确实与原始图像具有相同的尺寸。