码迷,mamicode.com
首页 > 编程语言 > 详细

碉堡了,python识别黄色图片

时间:2014-07-18 19:19:52      阅读:358      评论:0      收藏:0      [点我收藏+]

标签:使用   for   c   python   ar   size   

创建testimg.py

import sys
from PIL import Image

img = Image.open(sys.argv[1]).convert(‘YCbCr‘)

w, h = img.size

data = img.getdata()

cnt = 0

for i, ycbcr in enumerate(data):

y, cb, cr = ycbcr

if 86 <= cb <= 117 and 140 <= cr <= 168:

cnt += 1

print ‘%s %s a porn image.‘%(sys.argv[1], ‘is‘ if cnt > w * h * 0.3 else ‘is not‘)

需先安装PIL Library

 使用 :python testimg.py XXX.jpg

碉堡了,python识别黄色图片,布布扣,bubuko.com

碉堡了,python识别黄色图片

标签:使用   for   c   python   ar   size   

原文地址:http://www.cnblogs.com/wuxinqiu/p/3850741.html

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