碉堡了,python识别黄色图片
创建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
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。