plt 画图去白边

注意h,w次序

 h,w=img.shape
 plt.imshow(seg,'jet')
 plt.axis('off')
 plt.gcf().set_size_inches(w / 100.0 / 3.0, h / 100.0 / 3.0)
 plt.subplots_adjust(top=1, bottom=0, left=0, right=1, hspace=0, wspace=0)
 plt.savefig(save_name+str(i),dpi=600)
   

你可能感兴趣的:(python学习,神经网络,深度学习,pytorch)