码迷,mamicode.com
首页 > 其他好文 > 详细

【Funny Things】002——鞋的颜色

时间:2019-11-07 16:30:04      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:https   tps   image   code   取图   git   截取   col   结果   

网上的那张鞋子的图片到底是什么颜色的?灰绿色还是粉色?

1. 先截取图片中鞋的那块的图片,获取大小

2. 带入大小分别计算R,G,B平均值

3. 通过计算所得的数据画图可得结果

 1 from PIL import Image
 2 from pylab import *
 3 
 4 shoe = array(Image.open("shoe.jpg"))
 5 
 6 a = 0
 7 b = 0
 8 c = 0
 9 d = 96 * 96
10 
11 for i in range (95):
12     for j in range (95):
13         a += shoe[i, j][0]
14         b += shoe[i, j][1]
15         c += shoe[i, j][2]
16 
17 print(int(a/d),int(b/d),int(c/d))

图片见:https://github.com/chenger9/shoe-color

【Funny Things】002——鞋的颜色

标签:https   tps   image   code   取图   git   截取   col   结果   

原文地址:https://www.cnblogs.com/chenyun-/p/11812908.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!