python 替換圖片中的畫素
阿新 • • 發佈:2021-10-03
python 替換圖片中的畫素
from PIL import Image import time img = Image.open('luban/jietu1631965285306c.jpg') img = img.convert('RGB') pixels = img.load() start=time.time() for i in range(img.size[0]): for j in range(img.size[1]): if (pixels[i,j][0]>=90 and pixels[i,j][0]<=160) and (pixels[i,j][1]>=130 and pixels[i,j][1]<=220) and (pixels[i,j][2]>=150 and pixels[i,j][2]<=240): # if pixels[i,j] == (225, 225, 225): # print('wefwef'); pixels[i,j] = (0,0,0) img.save('example.jpg') end=time.time() print('Running time: %s Seconds'%(end-start))
如果遇到什麼不懂的地方直接關注公眾號留言(本文版權歸作者和部落格園共有,歡迎轉載,但未經作者同意必須在文章頁面給出原文連線,否則保留追究法律責任的權利。)
作者:newmiracle
出處:https://www.cnblogs.com/newmiracle/