如何将图像转换为数字数组(numpy)?

时间:2016-04-05 18:39:16

标签: python image numpy

我有像enter image description here

这样的图片

我想将六个不同的区域转换为数值。在Python中有任何选项吗?

1 个答案:

答案 0 :(得分:3)

from PIL import Image
import numpy as np

im = Image.open(sample_path.bmp)
p = np.array(im)

从那里你可以对图像进行正常的数组操作。