如何绘制图像矩阵?

时间:2018-06-19 16:52:22

标签: python matplotlib heatmap

我有一堆名为“ arbitrary_name + index(i,j)”的图像,我想先阅读这些文件,然后将它们组合成一个矩阵形式的图,其尺寸为len(i)* len( j),根据其名称索引定位每个图像。我有什么办法吗?

换句话说,使用图像代替热图中的值。

1 个答案:

答案 0 :(得分:0)

例如使用函数subplots

import matplotlib.pyplot as plt
...

fig, ax = plt.subplots(nrows=len(i), ncols=len(i), sharex=True, sharey=True,)
ax = ax.flatten()
for idx in range(len(i)):    
  for jdx in range(len(j)): 
    ax[idx,jdx].imshow(the arbitrary_name_index using idx,jdx as indeces)

您最多可以将代码调整为有效