我正在研究的问题是,我想以相当合理的确定性检测图像是黑色还是大部分是黑色。我已经编写了用于获取颜色直方图的代码,下一步是编写一个函数,该函数将获取(r,g,b)
元组并bool
指示它是黑色还是接近它。这不是 100% 准确是可以的,但最好是误报。
def average_image_color(i):
h = i.histogram()
# split into red, green, blue
r = h[0:256]
g = h[256:256*2]
b = h[256*2: 256*3]
# perform the weighted average of each channel:
# the *index* is the channel value, and the *value* is its weight
return (
sum( i*w for i, w in enumerate(r) ) / sum(r),
sum( i*w for i, w in enumerate(g) ) / sum(g),
sum( i*w for i, w in enumerate(b) ) / sum(b))
我有一组可以用作语料库的测试图像。最好的图书馆/方法是什么?
我希望训练的功能类似于
def is_black(r, g, b):
if magic_says_black():
return True
return False