numpy图片处理

numpy图片处理_第1张图片
莲.jpg
import numpy as np
from PIL import Image

pic=Image.open('莲.jpg')
print(type(pic))
im=np.array(pic)
print(im.shape,im.dtype,im.ndim,im.itemsize)
print(im.flags)
a=[255,255,255] - im
newim=Image.fromarray(a.astype('uint8'))
newim.save('底片莲.jpg')

b = [0.5,0.5,0.5] * im +[256*0.25 -1 ,256*0.25 -1 ,256*0.25 -1]
newim=Image.fromarray(b.astype('uint8'))
newim.save('朦胧莲.jpg')

c = [0.25,0.25,0.25] * im
newim=Image.fromarray(c.astype('uint8'))
newim.save('晚上莲.jpg')
numpy图片处理_第2张图片
底片莲.jpg
numpy图片处理_第3张图片
朦胧莲.jpg
numpy图片处理_第4张图片
晚上莲.jpg

你可能感兴趣的:(numpy图片处理)