📜  转换 un type image en array python 代码示例

📅  最后修改于: 2022-03-11 14:45:24.465000             🧑  作者: Mango

代码示例1
from PIL import Image 
from numpy import asarray 
  
  
img = Image.open('Sample.png') 
  
numpydata = asarray(img) 
  
print(type(numpydata)) 
  
print(numpydata.shape)