本文主要是介绍【python 图像切割】matplotlib读取图像,裁剪图像,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
#-*-coding:utf-8-*-
import sys
reload(sys)
sys.setdefaultencoding('utf-8')import matplotlib.pylab as plt
# 加载图像
im = plt.imread("E:/ID/2.png")print(im.shape)# (y轴像素点数, x轴像素点数,图像通道数)def plti(im, **kwargs):"""画图的辅助函数"""plt.imshow(im, interpolation="none", **kwargs)plt.axis('off') # 去掉坐标轴plt.show() # 弹窗显示图像im = im[50:380,:250,:] # 直接切片对图像进行裁剪
plti(im)
这篇关于【python 图像切割】matplotlib读取图像,裁剪图像的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!