from PIL import Image import numpy as np image = Image.open("/home/yang/图片/dog.jpg") # 用PIL中的Image.open打开图像 image_arr = np.array(image) # 转化成numpy数组