matplotlib 是python库中显示图片的好助手,matplotlib.imshow()可以显示图片
plt.imshow(img_tinted)
plt.show()
plt.imshow(img_2)
plt.show()
就可以显示两张图片
参考链接:
https://blog.csdn.net/the_little_fairy___/article/details/86632796
https://www.cnblogs.com/yangzhaonan/p/10427575.html