今天发现一个挺有用的图形库 imageio
附imageio用例网站https://imageio.readthedocs.io/en/latest/examples.html#read-an-image-of-a-cat
安装:在cmd 输入pip install imageio
import imageio
im = imageio.imread(r"C:\\Users\\as\\Desktop\\safe.jpg")
print(im.shape)
print(im[:, :, :, ])
运行这段代码能输出图片的大小和RGB值,可是RGB值不能显示完全并且带有省略号
只要在开头添上
import numpy
numpy.set_printoptions(threshold=numpy.inf)
就能完整显示了
完成!