matplotlib画图去掉边缘空白

用matplotlib画图时,生成的图像边缘会有空白,如下图
matplotlib画图去掉边缘空白_第1张图片
而且用pycharm生成的图像,全是640*480
其实,只是在保存图像时设置参数,就可以去掉边缘空白

# 设置参数 bbox_inches='tight', pad_inches=0 
fig.savefig('images/dark_10/dark_%d.png' % i, bbox_inches='tight', pad_inches=0)

大功告成,此时生成的图像就没有边缘的空白,如下图
matplotlib画图去掉边缘空白_第2张图片

你可能感兴趣的:(code,tips,CV)