【发布时间】:2019-12-05 09:26:27
【问题描述】:
def sample_stack(stack, rows=8, cols=8, start_with=1, show_every=1):
fig,ax = plt.subplots(rows,cols,figsize=[12,12])
for i in range(rows*cols):
ind = start_with + i*show_every
ax[int(i/rows),int(i % rows)].set_title('slice %d' % ind)
ax[int(i/rows),int(i % rows)].imshow(stack[ind],cmap='gray')
ax[int(i/rows),int(i % rows)].axis('off')
images = sample_stack(imgs_to_process)
运行后我不希望它显示,而是将图像放入文件夹中
【问题讨论】:
标签: python matplotlib