阅读量:0
NumPy是一个用于处理多维数组的库,而Pillow是一个用于图像处理的库。如果想要将NumPy数组转换为Pillow图像或者将Pillow图像转换为NumPy数组,可以使用以下方法进行集成:
- 将NumPy数组转换为Pillow图像:
import numpy as np from PIL import Image # 创建一个随机的NumPy数组 data = np.random.rand(100, 100, 3) * 255 data = data.astype(np.uint8) # 将NumPy数组转换为Pillow图像 image = Image.fromarray(data) image.show()
- 将Pillow图像转换为NumPy数组:
import numpy as np from PIL import Image # 打开一张图片并将其转换为NumPy数组 image = Image.open('image.jpg') data = np.array(image) print(data.shape)
通过这种方式,可以方便地在NumPy和Pillow之间进行数据转换和集成使用。