How to use matplotlib - Raidin/deeplearning-research GitHub Wiki

  • Image Save할 때 여백 없애는 방법
plt.imshow(img)
plt.axis('off')
plt.savefig("test.png", bbox_inches='tight', pad_inches=0)