我正在使用pyplot显示2D数组中的图像,并删除了轴标记和填充。但是,在图像行之间,仍有空白要删除。图片本身没有空格。
fig = plt.figure(figsize=(10, 10))
for x in range(quads_x):
for y in range(quads_y):
# ADD IMAGES
fig.add_subplot(quads_y, quads_x, (quads_x * x) + y + 1)
plt.imshow(cv2.imread("./map/" + winning_maps[x][y], 0))
# PYPLOT FORMATTING
plt.subplots_adjust(wspace=0, hspace=0)
ax = plt.gca()
ax.axis("off")
ax.xaxis.set_major_locator(matplotlib.ticker.NullLocator())
ax.yaxis.set_major_locator(matplotlib.ticker.NullLocator())
代码产生类似
的内容
关于我应该如何处理此问题的任何想法?
答案 0 :(得分:3)
通常使用plt.subplots_adjust(wspace=0, hspace=0)
会使所有轴彼此折叠。您遇到的问题是,使用imshow
可以修复绘图中轴的纵横比。
要进行补偿,您需要调整画布的大小,以使画框与所显示的图像具有相同的比率。下一个问题是轴周围的边框填充是图像大小的比率。如果可以,可以删除边框,放入图像,然后将画布的高度调整为图形高度乘以图像的比率乘以图像的行数除以图像的列数。图片。
这里是一个例子:
from matplotlib import pyplot as plt
from PIL import Image
img = Image.open('fox.jpg').resize(80,50)
fig, axes = plt.subplots(rows, columns, figsize=(7,7))
for ax in axes.ravel():
ax.imshow(img)
ax.set_autoscale_on(False)
ax.axis('off')
plt.subplots_adjust(hspace=0, wspace=0, left=0, bottom=0, right=1, top=1)
r, c = axes.shape
fig.set_figheight(fig.get_figwidth() * ax.get_data_ratio() * r / c )
plt.show()
这是使用set_figheight
之前的图像:
这里是调整项: