在Jupyter中以原尺寸显示图像

时间:2018-08-28 15:07:19

标签: python matplotlib jupyter

我尝试在Jupyter笔记本中显示图像。为此,我使用如下代码:

datetime

我获得以下图像:

big squares meddium squares small squares

如您所见,图像无法正确显示,因为它们被调整了大小以使其在屏幕上具有相同的尺寸。因此,图像被插值(到最近的邻居),从而产生了不必要的混叠。这对于图像处理来说太糟糕了……

我尝试在signals中定义import numpy as np import matplotlib.pyplot as plt for N in [20, 100, 300]: x, y = np.meshgrid(np.linspace(1,N,N), np.linspace(1,N,N)) img = (x+y) % 2 plt.figure() plt.imshow(img,cmap='gray') plt.title("Image shape: " + str(img.shape)); figsize,但这没用。

0 个答案:

没有答案