使用python进行图像处理时有三种库可以使用分别是:PIL、matplotlib.pyplot、opencv(opencv未接触)
注意:matplotlib读取进来的图片是unit8,0-255范围
PIL是有自己的数据结构的,但是可以转换成numpy数组,转换后的数组为unit8,0-255
opencv读进来的是numpy数组,类型是uint8,0-255
matplotlib和PIL读入的都是RGB顺序,而opencv读入的是BGR顺序
1,PIL库
2、matplotlib.pyplot库
注:上面两种库的使用展示了,打开图片的具体形式,matplotlib明显有着更加细致的页面布局。